11 lines
189 B
PL/PgSQL
11 lines
189 B
PL/PgSQL
begin;
|
|
|
|
alter table users
|
|
add column firstname text;
|
|
|
|
alter table users
|
|
add column lastname text;
|
|
|
|
INSERT INTO schema_version (version) VALUES ('20251130_1411_add_col_name_users');
|
|
|
|
COMMIT; |