Files
co_app/migrations/20260226_095800_add_col_dashname_dashboards.sql
2026-03-01 13:11:28 +01:00

8 lines
180 B
PL/PgSQL

begin;
alter table dashboards
add column dash_name text not null default "";
INSERT INTO schema_version (version) VALUES ('20260226_095800_add_col_dashname_dashboards');
COMMIT;