Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../cumulus
File: cumulus.sql
[0] Fix | Delete
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
[1] Fix | Delete
SET time_zone = "+00:00";
[2] Fix | Delete
[3] Fix | Delete
[4] Fix | Delete
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
[5] Fix | Delete
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
[6] Fix | Delete
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
[7] Fix | Delete
/*!40101 SET NAMES utf8 */;
[8] Fix | Delete
[9] Fix | Delete
--
[10] Fix | Delete
-- Database: `cumu253`
[11] Fix | Delete
--
[12] Fix | Delete
[13] Fix | Delete
-- --------------------------------------------------------
[14] Fix | Delete
[15] Fix | Delete
--
[16] Fix | Delete
-- Table structure for table `[[dbprefix]]attachments`
[17] Fix | Delete
--
[18] Fix | Delete
[19] Fix | Delete
CREATE TABLE `[[dbprefix]]attachments` (
[20] Fix | Delete
`attachment_id` bigint(20) NOT NULL AUTO_INCREMENT,
[21] Fix | Delete
`file_id` bigint(20) NOT NULL,
[22] Fix | Delete
`video_id` bigint(20) NOT NULL,
[23] Fix | Delete
`date_created` datetime NOT NULL,
[24] Fix | Delete
PRIMARY KEY (`attachment_id`)
[25] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[26] Fix | Delete
[27] Fix | Delete
-- --------------------------------------------------------
[28] Fix | Delete
[29] Fix | Delete
--
[30] Fix | Delete
-- Table structure for table `[[dbprefix]]categories`
[31] Fix | Delete
--
[32] Fix | Delete
[33] Fix | Delete
CREATE TABLE `[[dbprefix]]categories` (
[34] Fix | Delete
`category_id` bigint(20) NOT NULL AUTO_INCREMENT,
[35] Fix | Delete
`name` varchar(252) NOT NULL,
[36] Fix | Delete
`slug` varchar(255) NOT NULL,
[37] Fix | Delete
PRIMARY KEY (`category_id`)
[38] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
[39] Fix | Delete
[40] Fix | Delete
--
[41] Fix | Delete
-- Dumping data for table `[[dbprefix]]categories`
[42] Fix | Delete
--
[43] Fix | Delete
[44] Fix | Delete
INSERT INTO `[[dbprefix]]categories` VALUES
[45] Fix | Delete
(1, 'General', 'general');
[46] Fix | Delete
[47] Fix | Delete
-- --------------------------------------------------------
[48] Fix | Delete
[49] Fix | Delete
--
[50] Fix | Delete
-- Table structure for table `[[dbprefix]]comments`
[51] Fix | Delete
--
[52] Fix | Delete
[53] Fix | Delete
CREATE TABLE `[[dbprefix]]comments` (
[54] Fix | Delete
`comment_id` bigint(20) NOT NULL AUTO_INCREMENT,
[55] Fix | Delete
`user_id` bigint(20) NOT NULL DEFAULT '0',
[56] Fix | Delete
`video_id` bigint(20) NOT NULL,
[57] Fix | Delete
`parent_id` bigint(20) DEFAULT '0',
[58] Fix | Delete
`comments` longtext NOT NULL,
[59] Fix | Delete
`date_created` datetime NOT NULL,
[60] Fix | Delete
`status` varchar(255) NOT NULL,
[61] Fix | Delete
`released` tinyint(1) NOT NULL DEFAULT '0',
[62] Fix | Delete
PRIMARY KEY (`comment_id`)
[63] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[64] Fix | Delete
[65] Fix | Delete
-- --------------------------------------------------------
[66] Fix | Delete
[67] Fix | Delete
--
[68] Fix | Delete
-- Table structure for table `[[dbprefix]]files`
[69] Fix | Delete
--
[70] Fix | Delete
[71] Fix | Delete
CREATE TABLE `[[dbprefix]]files` (
[72] Fix | Delete
`file_id` bigint(20) NOT NULL AUTO_INCREMENT,
[73] Fix | Delete
`filename` varchar(255) NOT NULL,
[74] Fix | Delete
`type` varchar(20) NOT NULL,
[75] Fix | Delete
`user_id` bigint(20) NOT NULL,
[76] Fix | Delete
`name` text NOT NULL,
[77] Fix | Delete
`filesize` bigint(20) NOT NULL,
[78] Fix | Delete
`extension` varchar(255) NOT NULL DEFAULT '',
[79] Fix | Delete
`date_created` datetime NOT NULL,
[80] Fix | Delete
PRIMARY KEY (`file_id`),
[81] Fix | Delete
KEY `user_id` (`user_id`),
[82] Fix | Delete
KEY `filename` (`filename`)
[83] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[84] Fix | Delete
[85] Fix | Delete
-- --------------------------------------------------------
[86] Fix | Delete
[87] Fix | Delete
--
[88] Fix | Delete
-- Table structure for table `[[dbprefix]]flags`
[89] Fix | Delete
--
[90] Fix | Delete
[91] Fix | Delete
CREATE TABLE `[[dbprefix]]flags` (
[92] Fix | Delete
`flag_id` bigint(20) NOT NULL AUTO_INCREMENT,
[93] Fix | Delete
`object_id` bigint(20) NOT NULL,
[94] Fix | Delete
`type` varchar(255) NOT NULL,
[95] Fix | Delete
`user_id` bigint(20) NOT NULL,
[96] Fix | Delete
`date_created` date NOT NULL,
[97] Fix | Delete
`status` varchar(255) DEFAULT 'pending',
[98] Fix | Delete
PRIMARY KEY (`flag_id`)
[99] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[100] Fix | Delete
[101] Fix | Delete
-- --------------------------------------------------------
[102] Fix | Delete
[103] Fix | Delete
--
[104] Fix | Delete
-- Table structure for table `[[dbprefix]]messages`
[105] Fix | Delete
--
[106] Fix | Delete
[107] Fix | Delete
CREATE TABLE `[[dbprefix]]messages` (
[108] Fix | Delete
`message_id` bigint(20) NOT NULL AUTO_INCREMENT,
[109] Fix | Delete
`user_id` bigint(20) NOT NULL,
[110] Fix | Delete
`recipient` bigint(20) NOT NULL DEFAULT '0',
[111] Fix | Delete
`subject` text NOT NULL,
[112] Fix | Delete
`message` text NOT NULL,
[113] Fix | Delete
`status` varchar(255) NOT NULL,
[114] Fix | Delete
`date_created` datetime NOT NULL,
[115] Fix | Delete
PRIMARY KEY (`message_id`)
[116] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[117] Fix | Delete
[118] Fix | Delete
-- --------------------------------------------------------
[119] Fix | Delete
[120] Fix | Delete
--
[121] Fix | Delete
-- Table structure for table `[[dbprefix]]pages`
[122] Fix | Delete
--
[123] Fix | Delete
[124] Fix | Delete
CREATE TABLE `[[dbprefix]]pages` (
[125] Fix | Delete
`page_id` bigint(11) NOT NULL AUTO_INCREMENT,
[126] Fix | Delete
`title` text NOT NULL,
[127] Fix | Delete
`content` longtext NOT NULL,
[128] Fix | Delete
`slug` text NOT NULL,
[129] Fix | Delete
`layout` varchar(255) NOT NULL DEFAULT 'default',
[130] Fix | Delete
`date_created` datetime NOT NULL,
[131] Fix | Delete
`status` varchar(255) NOT NULL,
[132] Fix | Delete
PRIMARY KEY (`page_id`)
[133] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
[134] Fix | Delete
[135] Fix | Delete
--
[136] Fix | Delete
-- Dumping data for table `[[dbprefix]]pages`
[137] Fix | Delete
--
[138] Fix | Delete
[139] Fix | Delete
INSERT INTO `[[dbprefix]]pages` VALUES
[140] Fix | Delete
(1, 'Sample Page', '<p>This is a sample page. You can create custom static pages like this in the Admin Panel.</p>', 'sample-page', 'default', '2011-09-05 06:28:49', 'published');
[141] Fix | Delete
[142] Fix | Delete
-- --------------------------------------------------------
[143] Fix | Delete
[144] Fix | Delete
--
[145] Fix | Delete
-- Table structure for table `[[dbprefix]]playlists`
[146] Fix | Delete
--
[147] Fix | Delete
[148] Fix | Delete
CREATE TABLE `[[dbprefix]]playlists` (
[149] Fix | Delete
`playlist_id` int(11) NOT NULL AUTO_INCREMENT,
[150] Fix | Delete
`name` varchar(255) DEFAULT NULL,
[151] Fix | Delete
`user_id` int(11) NOT NULL,
[152] Fix | Delete
`type` varchar(20) NOT NULL DEFAULT 'list',
[153] Fix | Delete
`public` tinyint(1) DEFAULT '1',
[154] Fix | Delete
`date_created` date NOT NULL,
[155] Fix | Delete
PRIMARY KEY (`playlist_id`)
[156] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
[157] Fix | Delete
[158] Fix | Delete
--
[159] Fix | Delete
-- Dumping data for table `[[dbprefix]]playlists`
[160] Fix | Delete
--
[161] Fix | Delete
[162] Fix | Delete
INSERT INTO `[[dbprefix]]playlists` VALUES
[163] Fix | Delete
(1, NULL, 1, 'favorites', 0, '[[regdate]]'),
[164] Fix | Delete
(2, NULL, 1, 'watch_later', 0, '[[regdate]]');
[165] Fix | Delete
[166] Fix | Delete
-- --------------------------------------------------------
[167] Fix | Delete
[168] Fix | Delete
--
[169] Fix | Delete
-- Table structure for table `[[dbprefix]]playlist_entries`
[170] Fix | Delete
--
[171] Fix | Delete
[172] Fix | Delete
CREATE TABLE `[[dbprefix]]playlist_entries` (
[173] Fix | Delete
`playlist_entry_id` int(11) NOT NULL AUTO_INCREMENT,
[174] Fix | Delete
`playlist_id` int(11) NOT NULL,
[175] Fix | Delete
`video_id` int(11) NOT NULL,
[176] Fix | Delete
`date_created` date NOT NULL,
[177] Fix | Delete
PRIMARY KEY (`playlist_entry_id`)
[178] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[179] Fix | Delete
[180] Fix | Delete
-- --------------------------------------------------------
[181] Fix | Delete
[182] Fix | Delete
--
[183] Fix | Delete
-- Table structure for table `[[dbprefix]]privacy`
[184] Fix | Delete
--
[185] Fix | Delete
[186] Fix | Delete
CREATE TABLE `[[dbprefix]]privacy` (
[187] Fix | Delete
`privacy_id` bigint(20) NOT NULL AUTO_INCREMENT,
[188] Fix | Delete
`user_id` bigint(20) NOT NULL,
[189] Fix | Delete
`video_comment` tinyint(1) NOT NULL DEFAULT '1',
[190] Fix | Delete
`new_message` tinyint(1) NOT NULL DEFAULT '1',
[191] Fix | Delete
`new_video` tinyint(1) NOT NULL DEFAULT '1',
[192] Fix | Delete
`video_ready` tinyint(1) NOT NULL DEFAULT '1',
[193] Fix | Delete
`comment_reply` tinyint(1) NOT NULL DEFAULT '1',
[194] Fix | Delete
PRIMARY KEY (`privacy_id`)
[195] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
[196] Fix | Delete
[197] Fix | Delete
--
[198] Fix | Delete
-- Dumping data for table `[[dbprefix]]privacy`
[199] Fix | Delete
--
[200] Fix | Delete
[201] Fix | Delete
INSERT INTO `[[dbprefix]]privacy` VALUES
[202] Fix | Delete
(1, 1, 1, 1, 1, 1, 1);
[203] Fix | Delete
[204] Fix | Delete
-- --------------------------------------------------------
[205] Fix | Delete
[206] Fix | Delete
--
[207] Fix | Delete
-- Table structure for table `[[dbprefix]]ratings`
[208] Fix | Delete
--
[209] Fix | Delete
[210] Fix | Delete
CREATE TABLE `[[dbprefix]]ratings` (
[211] Fix | Delete
`rating_id` bigint(20) NOT NULL AUTO_INCREMENT,
[212] Fix | Delete
`video_id` bigint(20) NOT NULL,
[213] Fix | Delete
`user_id` bigint(20) NOT NULL,
[214] Fix | Delete
`date_created` datetime NOT NULL,
[215] Fix | Delete
`rating` tinyint(4) NOT NULL,
[216] Fix | Delete
PRIMARY KEY (`rating_id`)
[217] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[218] Fix | Delete
[219] Fix | Delete
-- --------------------------------------------------------
[220] Fix | Delete
[221] Fix | Delete
--
[222] Fix | Delete
-- Table structure for table `[[dbprefix]]settings`
[223] Fix | Delete
--
[224] Fix | Delete
[225] Fix | Delete
CREATE TABLE `[[dbprefix]]settings` (
[226] Fix | Delete
`setting_id` int(11) NOT NULL AUTO_INCREMENT,
[227] Fix | Delete
`name` varchar(255) NOT NULL,
[228] Fix | Delete
`value` longtext NOT NULL,
[229] Fix | Delete
PRIMARY KEY (`setting_id`)
[230] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=46 ;
[231] Fix | Delete
[232] Fix | Delete
--
[233] Fix | Delete
-- Dumping data for table `[[dbprefix]]settings`
[234] Fix | Delete
--
[235] Fix | Delete
[236] Fix | Delete
INSERT INTO `[[dbprefix]]settings` VALUES
[237] Fix | Delete
(1, 'active_theme', 'default'),
[238] Fix | Delete
(2, 'active_mobile_theme', 'mobile-default'),
[239] Fix | Delete
(3, 'default_language', 'en_US'),
[240] Fix | Delete
(4, 'installed_languages', '{"en_US":{"active":true,"lang_name":"English","native_name":"English","author":"CumulusClips","sample":"The quick brown fox jumps over the lazy dog","version":"2.4","update":"http://mothership.cumulusclips.org/updates/languages/en_US/","notes":""}}'),
[241] Fix | Delete
(5, 'installed_plugins', '[]'),
[242] Fix | Delete
(6, 'enabled_plugins', '[]'),
[243] Fix | Delete
(7, 'roles', '{"admin":{"name":"Administrator","permissions":["admin_panel","manage_settings"]},"mod":{"name":"Moderator","permissions":["admin_panel"]},"user":{"name":"User","permissions":[]}}'),
[244] Fix | Delete
(8, 'debug_conversion', '0'),
[245] Fix | Delete
(9, 'video_size_limit', '102000000'),
[246] Fix | Delete
(10, 'file_size_limit', '102000000'),
[247] Fix | Delete
(11, 'keep_original_video', '1'),
[248] Fix | Delete
(12, 'enable_encoding', '1'),
[249] Fix | Delete
(13, 'mobile_site', '1'),
[250] Fix | Delete
(14, 'h264_encoding_options', '-vcodec libx264 -vf "scale=min(640\\,iw):trunc(ow/a/2)*2" -vb 800k -acodec aac -ab 96k -ar 44100 -f mp4'),
[251] Fix | Delete
(15, 'webm_encoding_enabled', '0'),
[252] Fix | Delete
(16, 'webm_encoding_options', '-vcodec libvpx -vf "scale=min(640\\,iw):trunc(ow/a/2)*2" -vb 800k -acodec libvorbis -ab 96k -ar 44100 -f webm'),
[253] Fix | Delete
(17, 'theora_encoding_enabled', '0'),
[254] Fix | Delete
(18, 'theora_encoding_options', '-vcodec libtheora -vf "scale=min(640\\,iw):trunc(ow/a/2)*2" -qscale 8 -vb 800k -acodec libvorbis -ab 96k -ar 44100 -f ogg'),
[255] Fix | Delete
(19, 'mobile_encoding_enabled', '1'),
[256] Fix | Delete
(20, 'mobile_encoding_options', '-vcodec libx264 -vf "scale=min(480\\,iw):trunc(ow/a/2)*2" -vb 600k -ac 2 -ab 96k -ar 44100 -f mp4'),
[257] Fix | Delete
(21, 'thumb_encoding_options', '-vf "scale=min(640\\,iw):trunc(ow/a/2)*2" -t 1 -r 1 -f mjpeg'),
[258] Fix | Delete
(22, 'auto_approve_users', '1'),
[259] Fix | Delete
(23, 'auto_approve_videos', '1'),
[260] Fix | Delete
(24, 'auto_approve_comments', '1'),
[261] Fix | Delete
(25, 'alerts_videos', '1'),
[262] Fix | Delete
(26, 'alerts_comments', '1'),
[263] Fix | Delete
(27, 'alerts_users', '1'),
[264] Fix | Delete
(28, 'alerts_flags', '1'),
[265] Fix | Delete
(29, 'from_name', ''),
[266] Fix | Delete
(30, 'from_address', ''),
[267] Fix | Delete
(31, 'smtp', '{"enabled":false,"host":"","port":25,"username":"","password":""}'),
[268] Fix | Delete
(32, 'user_registrations', '1'),
[269] Fix | Delete
(33, 'user_uploads', '1'),
[270] Fix | Delete
(34, 'alerts_imports', '1'),
[271] Fix | Delete
(35, 'video_attachments', '1'),
[272] Fix | Delete
(36, 'session_timeout', '60'),
[273] Fix | Delete
(37, 'base_url', '[[softurl]]'),
[274] Fix | Delete
(38, 'secret_key', '[[secret_key]]'),
[275] Fix | Delete
(39, 'sitename', '[[site_name]]'),
[276] Fix | Delete
(40, 'admin_email', '[[admin_email]]'),
[277] Fix | Delete
(41, 'enable_uploads', '1'),
[278] Fix | Delete
(42, 'ffmpeg', '[[softpath]]/cc-core/system/bin/ffmpeg-64-bit/ffmpeg'),
[279] Fix | Delete
(43, 'qtfaststart', '[[softpath]]/cc-core/system/bin/ffmpeg-64-bit/qt-faststart'),
[280] Fix | Delete
(44, 'php', '/usr/bin/php'),
[281] Fix | Delete
(45, 'version', '2.5.3');
[282] Fix | Delete
[283] Fix | Delete
-- --------------------------------------------------------
[284] Fix | Delete
[285] Fix | Delete
--
[286] Fix | Delete
-- Table structure for table `[[dbprefix]]subscriptions`
[287] Fix | Delete
--
[288] Fix | Delete
[289] Fix | Delete
CREATE TABLE `[[dbprefix]]subscriptions` (
[290] Fix | Delete
`subscription_id` bigint(20) NOT NULL AUTO_INCREMENT,
[291] Fix | Delete
`user_id` bigint(20) NOT NULL,
[292] Fix | Delete
`member` bigint(20) NOT NULL,
[293] Fix | Delete
`date_created` datetime NOT NULL,
[294] Fix | Delete
PRIMARY KEY (`subscription_id`)
[295] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[296] Fix | Delete
[297] Fix | Delete
-- --------------------------------------------------------
[298] Fix | Delete
[299] Fix | Delete
--
[300] Fix | Delete
-- Table structure for table `[[dbprefix]]text`
[301] Fix | Delete
--
[302] Fix | Delete
[303] Fix | Delete
CREATE TABLE `[[dbprefix]]text` (
[304] Fix | Delete
`text_id` bigint(20) NOT NULL AUTO_INCREMENT,
[305] Fix | Delete
`type` varchar(20) NOT NULL,
[306] Fix | Delete
`language` varchar(20) DEFAULT 'english',
[307] Fix | Delete
`name` varchar(70) NOT NULL,
[308] Fix | Delete
`content` longtext NOT NULL,
[309] Fix | Delete
PRIMARY KEY (`text_id`)
[310] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[311] Fix | Delete
[312] Fix | Delete
-- --------------------------------------------------------
[313] Fix | Delete
[314] Fix | Delete
--
[315] Fix | Delete
-- Table structure for table `[[dbprefix]]users`
[316] Fix | Delete
--
[317] Fix | Delete
[318] Fix | Delete
CREATE TABLE `[[dbprefix]]users` (
[319] Fix | Delete
`user_id` bigint(20) NOT NULL AUTO_INCREMENT,
[320] Fix | Delete
`username` varchar(80) NOT NULL,
[321] Fix | Delete
`email` varchar(80) NOT NULL,
[322] Fix | Delete
`password` varchar(32) NOT NULL,
[323] Fix | Delete
`status` varchar(255) NOT NULL,
[324] Fix | Delete
`role` varchar(255) NOT NULL DEFAULT 'user',
[325] Fix | Delete
`date_created` date NOT NULL,
[326] Fix | Delete
`first_name` varchar(255) DEFAULT NULL,
[327] Fix | Delete
`last_name` varchar(255) DEFAULT NULL,
[328] Fix | Delete
`about_me` text,
[329] Fix | Delete
`website` text,
[330] Fix | Delete
`confirm_code` varchar(255) DEFAULT NULL,
[331] Fix | Delete
`views` bigint(20) DEFAULT '0',
[332] Fix | Delete
`last_login` date DEFAULT NULL,
[333] Fix | Delete
`avatar` varchar(255) DEFAULT NULL,
[334] Fix | Delete
`released` tinyint(1) NOT NULL DEFAULT '0',
[335] Fix | Delete
PRIMARY KEY (`user_id`),
[336] Fix | Delete
KEY `username` (`username`),
[337] Fix | Delete
KEY `email` (`email`)
[338] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
[339] Fix | Delete
[340] Fix | Delete
--
[341] Fix | Delete
-- Dumping data for table `[[dbprefix]]users`
[342] Fix | Delete
--
[343] Fix | Delete
[344] Fix | Delete
INSERT INTO `[[dbprefix]]users` VALUES
[345] Fix | Delete
(1, '[[admin_username]]', '[[admin_email]]', '[[admin_pass]]', 'active', 'admin', '[[regdate]]', NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, 1);
[346] Fix | Delete
[347] Fix | Delete
-- --------------------------------------------------------
[348] Fix | Delete
[349] Fix | Delete
--
[350] Fix | Delete
-- Table structure for table `[[dbprefix]]videos`
[351] Fix | Delete
--
[352] Fix | Delete
[353] Fix | Delete
CREATE TABLE `[[dbprefix]]videos` (
[354] Fix | Delete
`video_id` bigint(20) NOT NULL AUTO_INCREMENT,
[355] Fix | Delete
`filename` varchar(255) NOT NULL,
[356] Fix | Delete
`user_id` bigint(20) NOT NULL,
[357] Fix | Delete
`category_id` bigint(20) NOT NULL,
[358] Fix | Delete
`title` text NOT NULL,
[359] Fix | Delete
`description` text NOT NULL,
[360] Fix | Delete
`tags` text NOT NULL,
[361] Fix | Delete
`date_created` datetime NOT NULL,
[362] Fix | Delete
`duration` varchar(255) DEFAULT NULL,
[363] Fix | Delete
`status` varchar(255) NOT NULL,
[364] Fix | Delete
`views` bigint(20) NOT NULL DEFAULT '0',
[365] Fix | Delete
`featured` tinyint(1) NOT NULL DEFAULT '0',
[366] Fix | Delete
`original_extension` varchar(255) DEFAULT NULL,
[367] Fix | Delete
`job_id` bigint(20) DEFAULT NULL,
[368] Fix | Delete
`released` tinyint(1) NOT NULL DEFAULT '0',
[369] Fix | Delete
`disable_embed` tinyint(1) NOT NULL DEFAULT '0',
[370] Fix | Delete
`gated` tinyint(1) NOT NULL DEFAULT '0',
[371] Fix | Delete
`private` tinyint(1) NOT NULL DEFAULT '0',
[372] Fix | Delete
`private_url` varchar(255) DEFAULT NULL,
[373] Fix | Delete
`comments_closed` tinyint(1) NOT NULL DEFAULT '0',
[374] Fix | Delete
PRIMARY KEY (`video_id`),
[375] Fix | Delete
KEY `user_id` (`user_id`),
[376] Fix | Delete
FULLTEXT KEY `title_description_tags` (`title`,`description`,`tags`)
[377] Fix | Delete
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[378] Fix | Delete
[379] Fix | Delete
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
[380] Fix | Delete
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
[381] Fix | Delete
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
[382] Fix | Delete
[383] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function