14 lines
363 B
PL/PgSQL
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; |