You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
613 B

  1. # This migration is a duplicate of 20180831171112 and may get ignored, see
  2. # config/initializers/0_duplicate_migrations.rb
  3. class CreateBookmarks < ActiveRecord::Migration[5.1]
  4. def change
  5. create_table :bookmarks do |t|
  6. t.references :account, null: false
  7. t.references :status, null: false
  8. t.timestamps
  9. end
  10. safety_assured do
  11. add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade
  12. add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade
  13. end
  14. add_index :bookmarks, [:account_id, :status_id], unique: true
  15. end
  16. end