2023-03-28 01:09:10 +11:00
|
|
|
class CreateBookmarks < ActiveRecord::Migration[5.2]
|
2019-11-14 09:02:10 +11:00
|
|
|
def change
|
|
|
|
create_table :bookmarks do |t|
|
|
|
|
t.references :account, null: false
|
|
|
|
t.references :status, null: false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
safety_assured do
|
|
|
|
add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade
|
|
|
|
add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :bookmarks, [:account_id, :status_id], unique: true
|
|
|
|
end
|
|
|
|
end
|