7 lines
229 B
MySQL
7 lines
229 B
MySQL
|
|
alter table users
|
||
|
|
add column signup_email TEXT not null DEFAULT '',
|
||
|
|
add column signup_msg TEXT not null DEFAULT '',
|
||
|
|
add column active bool default false;
|
||
|
|
|
||
|
|
-- All existing users are active
|
||
|
|
update users set active=true;
|