* VRFS-72 merging after getting first_last

This commit is contained in:
Seth Call 2012-11-12 07:00:54 -06:00
commit 6cce04e4e2
2 changed files with 3 additions and 0 deletions

View File

@ -10,4 +10,5 @@ musician_access.sql
tracks.sql
followers.sql
locations.sql
first_last_name.sql
signup.sql

2
up/first_last_name.sql Normal file
View File

@ -0,0 +1,2 @@
ALTER TABLE users ADD COLUMN first_name varchar(50) NOT NULL DEFAULT 'Test';
ALTER TABLE users ADD COLUMN last_name varchar(50) NOT NULL DEFAULT 'User';