Add tool numgen

This commit is contained in:
knedlik
2025-12-18 22:22:26 +01:00
parent 9435399096
commit 37d1daa052
8 changed files with 168 additions and 179 deletions

View File

@@ -0,0 +1,14 @@
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;