This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/db/migrate/20160224223247_create_mentions.rb
2016-02-25 00:17:01 +01:00

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