3DS-RPC/server/sqlite/CREATE.sql
2023-02-01 21:13:52 -06:00

20 lines
407 B
SQL

Create Table friends(
friendCode text NOT NULL UNIQUE,
online boolean NOT NULL,
titleID text NOT NULL,
updID text NOT NULL,
lastAccessed bigint NOT NULL,
accountCreation bigint NOT NULL,
username text,
message text,
mii text,
joinable boolean,
gameDescription text,
lastOnline bigint NOT NULL,
jeuFavori bigint NOT NULL
);
Create Table config(
BACKEND_UPTIME bigint NOT NULL
);