swrm/server/migrations/0010.sql

7 lines
157 B
MySQL
Raw Normal View History

2024-02-02 16:25:49 +01:00
PRAGMA foreign_keys = ON;
CREATE TABLE IF NOT EXISTS users (
2024-02-11 17:14:32 +01:00
id INTEGER PRIMARY KEY,
2024-02-02 16:25:49 +01:00
username VARCHAR(255) NOT NULL,
password VARCHAR(255) NOT NULL
);