FEATURE: backend for inviting a user to a group

This commit is contained in:
Sam
2014-05-08 16:45:49 +10:00
parent 77d68ccf08
commit 34d1668f9f
14 changed files with 110 additions and 68 deletions

View File

@@ -0,0 +1,9 @@
class AddInvitedGroups < ActiveRecord::Migration
def change
create_table :invited_groups do |t|
t.integer :group_id
t.integer :invite_id
t.timestamps
end
end
end