Files
co_app/migrations/20251218_211700_add_table_param.sql
2025-12-18 22:22:26 +01:00

14 lines
363 B
PL/PgSQL

begin;
create table if not exists param (
parameter text unique not null,
parameter_text text not null,
param_description text,
param_value text not null,
date_create TEXT NOT NULL DEFAULT (datetime('now')),
id integer primary key autoincrement
);
INSERT INTO schema_version (version) VALUES ('20251218_211700_add_table_param');
COMMIT;