mirror of
https://github.com/discourse/discourse.git
synced 2025-01-24 08:22:01 +08:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
class AddInvitedGroups < ActiveRecord::Migration
|
|
def change
|
|
create_table :invited_groups do |t|
|
|
t.integer :group_id
|
|
t.integer :invite_id
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|