ALTER TABLE `cb_video` ADD `video_password` VARCHAR( 255 ) NOT NULL AFTER `videokey` ; ALTER TABLE `cb_video` ADD `video_users` TEXT NOT NULL AFTER `video_password`; ALTER TABLE `cb_video` ADD `category_parents` TEXT NOT NULL AFTER `category`; INSERT INTO `clipbucket_svn`.`cb_config` (`configid` ,`name` ,`value`)VALUES ( NULL , 'comments_per_page', '15' ); INSERT INTO `clipbucket_svn`.`cb_email_templates` ( `email_template_id` , `email_template_name` , `email_template_code` , `email_template_subject` , `email_template` , `email_template_allowed_tags` ) VALUES ( NULL , 'Video Subscription Email', 'video_subscription_email', '{uploader} has uploaded new video on {website_title}', 'Hello {username} You have been notified by {website_title} that {uploader} has uploaded new video Video Title : {video_title} Video Description : {video_description}
click here to watch this video
You are notified because you are subscribed to {uploader}, you can manage your subscriptions by going to your account and click on manage subscriptions. {website_title}', '' ); ALTER TABLE `cb_video` ADD `subscription_email` ENUM( "pending", "sent" ) NOT NULL DEFAULT 'pending' AFTER `last_commented` ; ALTER TABLE `cb_groups` ADD `group_admins` TEXT NOT NULL AFTER `userid` ;