11 lines
207 B
PL/PgSQL
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; |