This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-04-10 13:13:15 -07:00
|
|
|
class CreateBookmarks < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
|
|
|
create_table :bookmarks do |t|
|
|
|
|
t.references :account, null: false
|
|
|
|
t.references :status, null: false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
2019-05-30 12:12:02 -07:00
|
|
|
safety_assured { add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade }
|
|
|
|
safety_assured { add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade }
|
2018-04-10 13:13:15 -07:00
|
|
|
add_index :bookmarks, [:account_id, :status_id], unique: true
|
|
|
|
end
|
|
|
|
end
|