mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
18 lines
489 B
Ruby
18 lines
489 B
Ruby
|
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
|
||
|
|
||
|
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
|