Files
co_app/migrations/20251203_202900_add_col_order_tables.sql
2025-12-03 22:03:15 +01:00

11 lines
204 B
PL/PgSQL

begin;
alter table roles
add column order_no integer;
alter table permissions
add column order_no integer;
INSERT INTO schema_version (version) VALUES ('20251203_202900_add_col_order_tables');
COMMIT;