Files
co_app/migrations/20251204_210700_add_col_page_dashboards.sql
2025-12-04 22:08:15 +01:00

11 lines
207 B
PL/PgSQL

begin;
alter table dashboards
add column page_file text;
alter table dashboards
add column dash_type text;
INSERT INTO schema_version (version) VALUES ('20251204_210700_add_col_page_dashboards');
COMMIT;