Go server draft

This commit is contained in:
Imbus 2024-02-12 12:40:49 +01:00
parent 51faa74cd8
commit 29d5885b67
7 changed files with 148 additions and 0 deletions

View file

@ -0,0 +1,7 @@
PRAGMA foreign_keys = ON;
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY,
username VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL
);