20240229163603_create_local_preview_cards.rb 445 B

12345678910
  1. class CreateLocalPreviewCards < ActiveRecord::Migration[7.1]
  2. def change
  3. create_table :local_preview_cards do |t|
  4. t.belongs_to :status, foreign_key: { on_delete: :cascade }, null: false
  5. t.belongs_to :target_status, foreign_key: { on_delete: :cascade, to_table: :statuses }, null: true
  6. t.belongs_to :target_account, foreign_key: { on_delete: :cascade, to_table: :accounts }, null: true
  7. t.timestamps
  8. end
  9. end
  10. end