mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
12 lines
285 B
Ruby
12 lines
285 B
Ruby
class GroupUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :group_users, force: true do |t|
|
|
t.integer :group_id, null: false
|
|
t.integer :user_id, null: false
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :group_users, [:group_id, :user_id], unique: true
|
|
end
|
|
end
|