Skip to content
Snippets Groups Projects
Commit 28c26825 authored by Sofiane Lasri's avatar Sofiane Lasri
Browse files

Update install.php

parent 170ec7e9
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,17 @@ if (isset($_GET["session"])) {
PRIMARY KEY (`accountId`, `name`)
) ENGINE = InnoDB;");
$requete = $bdd->exec("CREATE TABLE `vbcms-notifications` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`origin` VARCHAR(512) NOT NULL,
`link` VARCHAR(512) NOT NULL,
`content` TEXT NOT NULL,
`removable` BOOLEAN NOT NULL,
`date` DATETIME NOT NULL,
`userId` INT(11),
PRIMARY KEY (`id`)
) ENGINE = InnoDB;");
/*
$requete = $bdd->exec("");
$requete = $bdd->exec("");
......@@ -230,7 +241,6 @@ if (isset($_GET["session"])) {
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
$requete = $bdd->exec("");
*/
// Insertions des données
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment