sync: Parse resolution.md

This commit is contained in:
nemunaire 2021-12-10 18:55:47 +01:00
commit f8001653cd
4 changed files with 62 additions and 28 deletions

View file

@ -143,8 +143,10 @@ CREATE TABLE IF NOT EXISTS exercices(
depend INTEGER,
gain INTEGER NOT NULL,
coefficient_cur FLOAT NOT NULL DEFAULT 1.0,
video_uri VARCHAR(255) NOT NULL,
finished TEXT NOT NULL,
video_uri VARCHAR(255) NOT NULL,
resolution TEXT NOT NULL,
seealso TEXT NOT NULL,
FOREIGN KEY(id_theme) REFERENCES themes(id_theme),
FOREIGN KEY(depend) REFERENCES exercices(id_exercice)
) DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;