label flags: Increase allowed size

This commit is contained in:
nemunaire 2023-07-16 19:00:10 +02:00
commit 6acc752bd9
2 changed files with 5 additions and 5 deletions

View file

@ -222,7 +222,7 @@ CREATE TABLE IF NOT EXISTS exercice_flag_labels(
id_label INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT,
id_exercice INTEGER NOT NULL,
ordre TINYINT NOT NULL,
label VARCHAR(255) NOT NULL,
label TEXT NOT NULL,
variant VARCHAR(255) NOT NULL,
FOREIGN KEY(id_exercice) REFERENCES exercices(id_exercice)
) DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;