15 lines
429 B
Ruby
15 lines
429 B
Ruby
class CreateDomainPostFileThumbnails < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :domain_post_file_thumbnails do |t|
|
|
t.references :post_file,
|
|
null: false,
|
|
foreign_key: {
|
|
to_table: :domain_post_files,
|
|
},
|
|
index: true
|
|
t.string :thumbnail_type, null: false, index: true
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|