Moved migrations into backend

This commit is contained in:
2026-04-27 12:09:58 +02:00
parent f63131ebc7
commit 6e4439e7fc
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE users (
id SMALLINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
last_name VARCHAR(30),
first_name VARCHAR(30),
username VARCHAR(30),
pwd TEXT,
is_admin BOOLEAN NOT NULL DEFAULT false
);