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.
2019-11-20 08:18:00 -08:00
|
|
|
# This migration is a duplicate of 20180410220657 and may get ignored, see
|
|
|
|
# config/initializers/0_duplicate_migrations.rb
|
|
|
|
|
2023-03-27 07:09:10 -07:00
|
|
|
class CreateBookmarks < ActiveRecord::Migration[5.2]
|
2019-11-13 14:02:10 -08: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
|