- Finished CRUD methods of Variables, Ingredients, MetaSchools, pretty much everything except users ye

This commit is contained in:
Alexis
2020-06-08 20:25:05 +02:00
parent 48987b8349
commit dda9545b68
7 changed files with 395 additions and 4 deletions

View File

@@ -38,6 +38,7 @@ CREATE TABLE IF NOT EXISTS `school` (
CREATE TABLE IF NOT EXISTS `ingredient` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) NOT NULL DEFAULT "Langue de salamandre",
`description` VARCHAR(255) NOT NULL DEFAULT "Une langue de salamandre de feu qui bouge encore un peu.",
PRIMARY KEY (`id`)
);