mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
12 lines
325 B
Ruby
12 lines
325 B
Ruby
class AddGroupMentions < ActiveRecord::Migration
|
|
def change
|
|
create_table :group_mentions do |t|
|
|
t.integer :post_id
|
|
t.integer :group_id
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :group_mentions, [:post_id, :group_id], unique: true
|
|
add_index :group_mentions, [:group_id, :post_id], unique: true
|
|
end
|
|
end
|