|
|
@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
# This migration is a duplicate of 20180831171112 and may get ignored, see
|
|
|
|
|
|
|
|
# config/initializers/0_duplicate_migrations.rb
|
|
|
|
|
|
|
|
|
|
|
|
class CreateBookmarks < ActiveRecord::Migration[5.1]
|
|
|
|
class CreateBookmarks < ActiveRecord::Migration[5.1]
|
|
|
|
def change
|
|
|
|
def change
|
|
|
|
create_table :bookmarks do |t|
|
|
|
|
create_table :bookmarks do |t|
|
|
|
@ -7,8 +10,11 @@ class CreateBookmarks < ActiveRecord::Migration[5.1]
|
|
|
|
t.timestamps
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
safety_assured { add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade }
|
|
|
|
safety_assured do
|
|
|
|
safety_assured { add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade }
|
|
|
|
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
|
|
|
|
add_index :bookmarks, [:account_id, :status_id], unique: true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|