Update upgrade.sql

This commit is contained in:
Saqib Razzaq 2016-06-08 13:13:15 +05:00
parent bb4fea4e50
commit 3e68e9fa26

View file

@ -1,6 +1,6 @@
-- Please Put all the DB changes here -- Please Put all the DB changes here
-- Also add those changes that have been made and not been added -- Also add those changes that have been made and not been added
-- All files moved to cb_install
ALTER TABLE `video` ADD `userid` INT NOT NULL AFTER `username` ALTER TABLE `video` ADD `userid` INT NOT NULL AFTER `username`
ALTER TABLE `video_comments` ADD `userid` INT NOT NULL AFTER `username` ALTER TABLE `video_comments` ADD `userid` INT NOT NULL AFTER `username`
@ -27,4 +27,4 @@ ADD `userid` INT NOT NULL AFTER `subscriber_id`
ALTER TABLE `plugins` ADD `plugin_folder` TEXT NOT NULL AFTER `plugin_file` ; ALTER TABLE `plugins` ADD `plugin_folder` TEXT NOT NULL AFTER `plugin_file` ;
ALTER TABLE `user_permissions` ADD `input_type` ENUM( 'text', 'radio', 'select', 'textarea' ) NOT NULL DEFAULT 'radio'; ALTER TABLE `user_permissions` ADD `input_type` ENUM( 'text', 'radio', 'select', 'textarea' ) NOT NULL DEFAULT 'radio';