feat: update user retrieval and add new users table; enhance MainForm with user fetching and localization support

This commit is contained in:
2026-01-19 12:38:50 +01:00
parent 9bc22300eb
commit 1208d731ca
7 changed files with 54 additions and 12 deletions

View File

@@ -8,6 +8,14 @@ CREATE TABLE users (
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE usersNEW (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(100) NOT NULL UNIQUE,
first_name VARCHAR(100) NOT NULL,
last_name VARCHAR(100) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Trigger zur automatischen Generierung eines 25stelligen Keys
DELIMITER $