14 lines
235 B
PL/PgSQL
14 lines
235 B
PL/PgSQL
begin;
|
|
|
|
alter table dashboards
|
|
add column zgrp1 text;
|
|
|
|
alter table dashboards
|
|
add column zgrp2 text;
|
|
|
|
alter table dashboards
|
|
add column zgrp3 text;
|
|
|
|
INSERT INTO schema_version (version) VALUES ('20251130_200000_add_col_area');
|
|
|
|
COMMIT; |