mirror of
https://github.com/MCMi460/3DS-RPC.git
synced 2025-06-19 05:55:36 -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(
|
Create Table config(
|
||||||
BACKEND_UPTIME bigint NOT NULL,
|
backend_uptime text,
|
||||||
network tinyint NOT NULL
|
network tinyint NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
INSERT INTO config(BACKEND_UPTIME, network) VALUES (0, 0);
|
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, 1);
|
||||||
|
|
||||||
Create Table discord(
|
Create Table discord(
|
||||||
ID bigint NOT NULL UNIQUE,
|
ID bigint NOT NULL UNIQUE,
|
||||||
|
Loading…
Reference in New Issue
Block a user