Added ticket edit functionality

As said, also minor change to database for testing purposes
This commit is contained in:
2026-04-23 20:13:09 +02:00
parent b905ffc9b1
commit 5e643503aa
4 changed files with 56 additions and 5 deletions

View File

@@ -6,5 +6,5 @@ CREATE TABLE IF NOT EXISTS tickets (
room SMALLINT,
status VARCHAR(15) NOT NULL DEFAULT 'ToDo',
date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
user_id SMALLINT
user_id SMALLINT DEFAULT 1
);