Migration fix

This commit is contained in:
Imbus 2024-02-11 17:14:32 +01:00
parent 62e77b5be7
commit 8ea6638d5a

View file

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