8 lines
180 B
PL/PgSQL
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; |