Added functions for adding, deleting and showing tickets

As said, functions got implemented. Also minor changes to migration
layout and dependencies
This commit is contained in:
2026-04-22 20:40:28 +02:00
parent 1725d2538c
commit 8b34dac813
10 changed files with 134 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
CREATE TABLE users (
id SMALLINT PRIMARY KEY AUTOINCREMENT,
id SMALLINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
name VARCHAR(30),
firstname VARCHAR(30),
is_admin BOOLEAN NOT NULL DEFAULT false