mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
50eb8f1f61
Bookmarks behave like favourites, except they aren't shared with other users and do not have an associated counter.
15 lines
454 B
Ruby
15 lines
454 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
|
|
|
|
add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade
|
|
add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade
|
|
add_index :bookmarks, [:account_id, :status_id], unique: true
|
|
end
|
|
end
|