8 lines
168 B
PL/PgSQL
8 lines
168 B
PL/PgSQL
begin;
|
|
|
|
alter table users
|
|
add column new_pwd integer not null default 1;
|
|
|
|
INSERT INTO schema_version (version) VALUES ('20251130_161100_add_col_newpwd_users');
|
|
|
|
COMMIT; |