add missing Files table to SQL insert
parent
95790d479b
commit
d56ecc8eb1
|
@ -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) */;
|
||||
|
|
Loading…
Reference in New Issue