mirror of
https://github.com/MCMi460/3DS-RPC.git
synced 2025-06-19 05:55:36 -04:00
20 lines
407 B
SQL
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
|
|
);
|