mirror of
https://github.com/zzzzDev4/ias-tea-axum.git
synced 2025-04-20 15:21:20 +02:00
initialize config
This commit is contained in:
parent
36e5c75340
commit
511e22d69c
1 changed files with 5 additions and 3 deletions
|
@ -16,6 +16,8 @@ CREATE TABLE IF NOT EXISTS steepinglog (
|
|||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS config (
|
||||
default_steeping_time INT NOT NULL DEFAULT 120,
|
||||
feedback_timeout BIGINT NOT NULL DEFAULT 60
|
||||
);
|
||||
default_steeping_time INT NOT NULL,
|
||||
feedback_timeout BIGINT NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO config (default_steeping_time, feedback_timeout) VALUES (120, 60);
|
Loading…
Add table
Reference in a new issue