Add tool numgen
This commit is contained in:
@@ -11,7 +11,7 @@ create table if not exists dashboards (
|
||||
);
|
||||
|
||||
create table if not exists groups (
|
||||
group_id text unique not null,
|
||||
group_id integer unique not null,
|
||||
group_text text not null,
|
||||
group_description text,
|
||||
active integer not null default 1,
|
||||
|
||||
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