mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
10 lines
209 B
Ruby
10 lines
209 B
Ruby
class AddInvitedGroups < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :invited_groups do |t|
|
|
t.integer :group_id
|
|
t.integer :invite_id
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|