This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/db/migrate/20160224223247_create_menti...

13 lines
265 B
Ruby

class CreateMentions < ActiveRecord::Migration
def change
create_table :mentions do |t|
t.integer :account_id
t.integer :status_id
t.timestamps null: false
end
add_index :mentions, [:account_id, :status_id], unique: true
end
end