cleanup 3

This commit is contained in:
2026-08-09 14:29:24 +02:00
parent 977f42b7be
commit 77913b292f
5 changed files with 2 additions and 25 deletions
-11
View File
@@ -7,14 +7,3 @@ CREATE USER IF NOT EXISTS 'focusapp'@'%' IDENTIFIED BY 'change-password';
GRANT ALL PRIVILEGES ON focusapp.* TO 'focusapp'@'%';
FLUSH PRIVILEGES;
USE focusapp;
CREATE TABLE IF NOT EXISTS FocusTasks (
Id INT AUTO_INCREMENT PRIMARY KEY,
Title VARCHAR(255) NOT NULL,
Description VARCHAR(2000) NULL,
`Order` INT NOT NULL,
CreatedAt DATETIME NOT NULL,
UpdatedAt DATETIME NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;