CREATE TABLE `mt_blog` (
`blog_id` INT(11) NOT NULL AUTO_INCREMENT,
`blog_allow_anon_comments` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_comment_html` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_commenter_regist` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_comments_default` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_pings` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_pings_default` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_reg_comments` TINYINT(4) NULL DEFAULT NULL,
`blog_allow_unreg_comments` TINYINT(4) NULL DEFAULT NULL,
`blog_archive_path` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_tmpl_category` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_tmpl_daily` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_tmpl_individual` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_tmpl_monthly` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_tmpl_weekly` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_type` VARCHAR(255) NULL DEFAULT NULL,
`blog_archive_type_preferred` VARCHAR(25) NULL DEFAULT NULL,
`blog_archive_url` VARCHAR(255) NULL DEFAULT NULL,
`blog_autodiscover_links` TINYINT(4) NULL DEFAULT NULL,
`blog_autolink_urls` TINYINT(4) NULL DEFAULT NULL,
`blog_basename_limit` SMALLINT(6) NULL DEFAULT NULL,
`blog_cc_license` VARCHAR(255) NULL DEFAULT NULL,
`blog_children_modified_on` DATETIME NULL DEFAULT NULL,
`blog_class` VARCHAR(255) NULL DEFAULT 'blog',
`blog_convert_paras` VARCHAR(30) NULL DEFAULT NULL,
`blog_convert_paras_comments` VARCHAR(30) NULL DEFAULT NULL,
`blog_created_by` INT(11) NULL DEFAULT NULL,
`blog_created_on` DATETIME NULL DEFAULT NULL,
`blog_custom_dynamic_templates` VARCHAR(25) NULL DEFAULT 'none',
`blog_days_on_index` INT(11) NULL DEFAULT NULL,
`blog_description` MEDIUMTEXT NULL,
`blog_email_new_comments` TINYINT(4) NULL DEFAULT NULL,
`blog_email_new_pings` TINYINT(4) NULL DEFAULT NULL,
`blog_entries_on_index` INT(11) NULL DEFAULT NULL,
`blog_file_extension` VARCHAR(10) NULL DEFAULT NULL,
`blog_google_api_key` VARCHAR(32) NULL DEFAULT NULL,
`blog_internal_autodiscovery` TINYINT(4) NULL DEFAULT NULL,
`blog_is_dynamic` TINYINT(4) NULL DEFAULT NULL,
`blog_junk_folder_expiry` INT(11) NULL DEFAULT NULL,
`blog_junk_score_threshold` FLOAT NULL DEFAULT NULL,
`blog_language` VARCHAR(5) NULL DEFAULT NULL,
`blog_manual_approve_commenters` TINYINT(4) NULL DEFAULT NULL,
`blog_moderate_pings` TINYINT(4) NULL DEFAULT NULL,
`blog_moderate_unreg_comments` TINYINT(4) NULL DEFAULT NULL,
`blog_modified_by` INT(11) NULL DEFAULT NULL,
`blog_modified_on` DATETIME NULL DEFAULT NULL,
`blog_mt_update_key` VARCHAR(30) NULL DEFAULT NULL,
`blog_name` VARCHAR(255) NOT NULL,
`blog_old_style_archive_links` TINYINT(4) NULL DEFAULT NULL,
`blog_parent_id` INT(11) NULL DEFAULT NULL,
`blog_ping_blogs` TINYINT(4) NULL DEFAULT NULL,
`blog_ping_google` TINYINT(4) NULL DEFAULT NULL,
`blog_ping_others` MEDIUMTEXT NULL,
`blog_ping_technorati` TINYINT(4) NULL DEFAULT NULL,
`blog_ping_weblogs` TINYINT(4) NULL DEFAULT NULL,
`blog_remote_auth_token` VARCHAR(50) NULL DEFAULT NULL,
`blog_require_comment_emails` TINYINT(4) NULL DEFAULT NULL,
`blog_sanitize_spec` VARCHAR(255) NULL DEFAULT NULL,
`blog_server_offset` FLOAT NULL DEFAULT NULL,
`blog_site_path` VARCHAR(255) NULL DEFAULT NULL,
`blog_site_url` VARCHAR(255) NULL DEFAULT NULL,
`blog_sort_order_comments` VARCHAR(8) NULL DEFAULT NULL,
`blog_sort_order_posts` VARCHAR(8) NULL DEFAULT NULL,
`blog_status_default` SMALLINT(6) NULL DEFAULT NULL,
`blog_theme_id` VARCHAR(255) NULL DEFAULT NULL,
`blog_use_comment_confirmation` TINYINT(4) NULL DEFAULT NULL,
`blog_use_revision` TINYINT(4) NULL DEFAULT NULL,
`blog_welcome_msg` MEDIUMTEXT NULL,
`blog_words_in_excerpt` SMALLINT(6) NULL DEFAULT NULL,
PRIMARY KEY (`blog_id`),
INDEX `mt_blog_name` (`blog_name`),
INDEX `mt_blog_class` (`blog_class`),
INDEX `mt_blog_parent_id` (`blog_parent_id`)
)