Skip to content

Commit

Permalink
Apply rake db:migrate to change columns type of attachment file
Browse files Browse the repository at this point in the history
  • Loading branch information
taitus committed Aug 31, 2020
1 parent 3853557 commit 2736819
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@
t.string "title"
t.string "attachment_file_name"
t.string "attachment_content_type"
t.integer "attachment_file_size"
t.bigint "attachment_file_size"
t.datetime "attachment_updated_at"
t.integer "user_id"
t.string "documentable_type"
Expand Down Expand Up @@ -641,7 +641,7 @@
t.datetime "updated_at", null: false
t.string "attachment_file_name"
t.string "attachment_content_type"
t.integer "attachment_file_size"
t.bigint "attachment_file_size"
t.datetime "attachment_updated_at"
t.integer "user_id"
t.index ["imageable_type", "imageable_id"], name: "index_images_on_imageable_type_and_imageable_id"
Expand Down Expand Up @@ -1347,7 +1347,7 @@
t.string "name", null: false
t.string "image_file_name"
t.string "image_content_type"
t.integer "image_file_size"
t.bigint "image_file_size"
t.datetime "image_updated_at"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
Expand Down

0 comments on commit 2736819

Please sign in to comment.