2017-08-31 00:06:56 -04:00
|
|
|
class AddGroupMentions < ActiveRecord::Migration[4.2]
|
2015-12-01 00:52:43 -05:00
|
|
|
def change
|
|
|
|
create_table :group_mentions do |t|
|
|
|
|
t.integer :post_id
|
|
|
|
t.integer :group_id
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2015-12-01 00:52:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :group_mentions, [:post_id, :group_id], unique: true
|
|
|
|
add_index :group_mentions, [:group_id, :post_id], unique: true
|
|
|
|
end
|
|
|
|
end
|