add missing Files table to SQL insert

merge-requests/25/head
Moe 2018-09-20 09:46:49 -07:00
parent 95790d479b
commit d56ecc8eb1
1 changed files with 11 additions and 0 deletions

View File

@ -114,6 +114,17 @@ CREATE TABLE IF NOT EXISTS `Videos` (
`details` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Data exporting was unselected.
-- Dumping structure for table ccio.Files
CREATE TABLE IF NOT EXISTS `Files` (
`ke` varchar(50) NOT NULL,
`mid` varchar(50) NOT NULL,
`name` tinytext NOT NULL,
`size` float NOT NULL DEFAULT '0',
`details` text NOT NULL,
`status` int(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- Data exporting was unselected.
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;