This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-06-05 02:43:02 +02:00
|
|
|
class CreateMentions < ActiveRecord::Migration[4.2]
|
2016-02-25 00:17:01 +01:00
|
|
|
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
|