Files
co_app/migrations/20251130_200000_add_col_area.sql
2025-11-30 23:03:25 +01:00

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;