Stores ignorecase property for flags

This commit is contained in:
nemunaire 2018-09-24 09:23:09 +02:00 committed by Pierre-Olivier Mercier
commit f36e1c4e4d
6 changed files with 19 additions and 13 deletions

View file

@ -161,6 +161,7 @@ CREATE TABLE IF NOT EXISTS exercice_keys(
id_exercice INTEGER NOT NULL,
type VARCHAR(255) NOT NULL,
help VARCHAR(255) NOT NULL,
ignorecase BOOLEAN NOT NULL DEFAULT 0,
cksum BINARY(64) NOT NULL,
FOREIGN KEY(id_exercice) REFERENCES exercices(id_exercice)
) DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;