diff --git a/docs/db_struct.sql b/docs/db_struct.sql index 2529392..b60dd43 100644 --- a/docs/db_struct.sql +++ b/docs/db_struct.sql @@ -169,19 +169,6 @@ CREATE TABLE `comunic_notifications` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; - -DROP TABLE IF EXISTS `galerie_video`; -CREATE TABLE `galerie_video` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `URL` varchar(255) NOT NULL, - `ID_user` int(11) NOT NULL, - `nom_video` varchar(255) NOT NULL, - `file_type` varchar(255) NOT NULL, - `size` varchar(255) NOT NULL, - PRIMARY KEY (`ID`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - - DROP TABLE IF EXISTS `sondage`; CREATE TABLE `sondage` ( `ID` int(11) NOT NULL AUTO_INCREMENT, diff --git a/docs/migration.sql b/docs/migration.sql index 977f174..f549da4 100644 --- a/docs/migration.sql +++ b/docs/migration.sql @@ -1,2 +1,2 @@ --- Sanitize user table -ALTER TABLE utilisateurs DROP COLUMN page_verifiee; \ No newline at end of file +-- Remove deprecated table +DROP TABLE IF EXISTS `galerie_video`; \ No newline at end of file