1
0
Fork 0
mirror of https://gitlab.com/Shinobi-Systems/ShinobiCE.git synced 2025-03-09 15:40:15 +00:00

Shinobi CE officially lands on Gitlab

This commit is contained in:
Moe 2018-06-07 23:21:38 -07:00
commit f1406d4eec
431 changed files with 118157 additions and 0 deletions

17
sql/update-17-5-2017.sql Normal file
View file

@ -0,0 +1,17 @@
CREATE DATABASE IF NOT EXISTS `ccio`;
USE `ccio`;
CREATE TABLE IF NOT EXISTS `BackupVideos` (
`mid` varchar(50) DEFAULT NULL,
`ke` varchar(50) DEFAULT NULL,
`ext` varchar(15) DEFAULT NULL,
`time` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`size` float DEFAULT NULL,
`details` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE Videos MODIFY COLUMN `ext` varchar(15);
ALTER TABLE Videos ADD `details` longtext;
ALTER TABLE Videos DROP COLUMN `frames`;
ALTER TABLE Videos DROP COLUMN `duration`;