Migrations

This commit is contained in:
Imbus 2024-02-02 16:25:49 +01:00
parent 514331411f
commit 5199576a87

View file

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