Files
redux-scraper/db/migrate/20250301000001_create_domain_post_file_thumbnails.rb
2025-03-03 17:05:58 +00:00

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