* VRFS-311 - database new columns on user model to hold desired new email as well as email token
This commit is contained in:
parent
c41c5d3b74
commit
476829e61d
|
|
@ -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)
|
||||
|
|
|
|||
1
manifest
1
manifest
|
|
@ -61,3 +61,4 @@ mixes.sql
|
|||
perf_data.sql
|
||||
claimed_recordings.sql
|
||||
recordings2.sql
|
||||
update_email.sql
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE users ADD COLUMN update_email VARCHAR(1024);
|
||||
ALTER TABLE users ADD COLUMN update_email_token VARCHAR(1024) UNIQUE;
|
||||
Loading…
Reference in New Issue