4
0
Fork 0
mirror of https://github.com/zzzzDev4/ias-tea-axum.git synced 2025-04-21 07:41:21 +02:00

initialize config

This commit is contained in:
zzzz 2025-01-11 03:42:38 +01:00
parent 36e5c75340
commit 511e22d69c

View file

@ -16,6 +16,8 @@ CREATE TABLE IF NOT EXISTS steepinglog (
); );
CREATE TABLE IF NOT EXISTS config ( CREATE TABLE IF NOT EXISTS config (
default_steeping_time INT NOT NULL DEFAULT 120, default_steeping_time INT NOT NULL,
feedback_timeout BIGINT NOT NULL DEFAULT 60 feedback_timeout BIGINT NOT NULL
); );
INSERT INTO config (default_steeping_time, feedback_timeout) VALUES (120, 60);