VRFS-194: added can_invite column to users

This commit is contained in:
Jonathan Kolyer 2013-01-04 03:57:54 -06:00
parent 2550fb40b5
commit 515e1c2b7a
2 changed files with 4 additions and 1 deletions

View File

@ -37,4 +37,5 @@ plays.sql
session_settings.sql
tracks_rename.sql
reset_password.sql
friend_request_changes.sql
friend_request_changes.sql
user_add_can_invite.sql

View File

@ -0,0 +1,2 @@
-- add can_invite flag to users; for beta retrict
ALTER TABLE users ADD COLUMN can_invite BOOLEAN NOT NULL DEFAULT true;