Add tool numgen
This commit is contained in:
14
migrations/20251218_211700_add_table_param.sql
Normal file
14
migrations/20251218_211700_add_table_param.sql
Normal 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;
|
||||
Reference in New Issue
Block a user