* VRFS-311 - database new columns on user model to hold desired new email as well as email token

This commit is contained in:
Seth Call 2013-05-10 07:09:26 -05:00
parent c41c5d3b74
commit 476829e61d
3 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ GEM
little-plugger (>= 1.1.3)
pg (0.14.0)
pg (0.14.0-x86-mingw32)
pg_migrate (0.1.6)
pg_migrate (0.1.7)
logging (= 1.7.2)
pg (= 0.14.0)
thor (= 0.15.4)
@ -17,4 +17,4 @@ PLATFORMS
x86-mingw32
DEPENDENCIES
pg_migrate (= 0.1.6)
pg_migrate (= 0.1.7)

View File

@ -61,3 +61,4 @@ mixes.sql
perf_data.sql
claimed_recordings.sql
recordings2.sql
update_email.sql

2
up/update_email.sql Normal file
View File

@ -0,0 +1,2 @@
ALTER TABLE users ADD COLUMN update_email VARCHAR(1024);
ALTER TABLE users ADD COLUMN update_email_token VARCHAR(1024) UNIQUE;