mirror of
https://github.com/MCMi460/3DS-RPC.git
synced 2025-06-18 13:35:34 -04:00
Adjust sqlite3 to new config table schema
This commit is contained in:
parent
1edbfa40f2
commit
bfe9f47e8d
@ -16,12 +16,12 @@ Create Table friends(
|
||||
);
|
||||
|
||||
Create Table config(
|
||||
BACKEND_UPTIME bigint NOT NULL,
|
||||
backend_uptime text,
|
||||
network tinyint NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO config(BACKEND_UPTIME, network) VALUES (0, 0);
|
||||
INSERT INTO config(BACKEND_UPTIME, network) VALUES (0, 1);
|
||||
INSERT INTO config(backend_uptime, network) VALUES (0, 0);
|
||||
INSERT INTO config(backend_uptime, network) VALUES (0, 1);
|
||||
|
||||
Create Table discord(
|
||||
ID bigint NOT NULL UNIQUE,
|
||||
|
Loading…
Reference in New Issue
Block a user