Création d'une page de gestion des humeurs

This commit is contained in:
Kepka Ludovic
2025-08-09 09:08:27 +02:00
parent 21b5cf8669
commit 7db8b1ff7b
11 changed files with 77 additions and 21 deletions
+7 -1
View File
@@ -3,4 +3,10 @@ CREATE TABLE IF NOT EXISTS `message` (
`enable` BOOLEAN NOT NULL DEFAULT FALSE,
`text` VARCHAR(256) NULL,
periodicity INTEGER NULL
);
);
CREATE TABLE IF NOT EXISTS `humeur` (
id INTEGER PRIMARY KEY AUTOINCREMENT,
`enable` BOOLEAN NOT NULL DEFAULT TRUE,
`text` VARCHAR(256) NULL
);