9 lines
153 B
PL/PgSQL
9 lines
153 B
PL/PgSQL
begin;
|
|
|
|
alter table users
|
|
add column email text not null;
|
|
|
|
INSERT INTO schema_version (version) VALUES ('20251130_124700_add_col_email_users');
|
|
|
|
COMMIT;
|