2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-09 22:22:54 +08:00
discourse/db/migrate/20140508053815_add_invited_groups.rb

10 lines
209 B
Ruby
Raw Normal View History

class AddInvitedGroups < ActiveRecord::Migration[4.2]
def change
create_table :invited_groups do |t|
t.integer :group_id
t.integer :invite_id
2017-08-08 00:48:36 +09:00
t.timestamps null: false
end
end
end