CREATE TABLE `Webmeng_category_video'` (
  `cat_id` smallint(5) UNSIGNED NOT NULL,
  `cat_name` varchar(30) NOT NULL COMMENT '类别名称',
  `intro` varchar(100) DEFAULT NULL COMMENT '类别描述',
  `level` tinyint(2) UNSIGNED NOT NULL DEFAULT '0' COMMENT '类别层级',
  `parent_id` smallint(5) UNSIGNED NOT NULL DEFAULT '0' COMMENT '父类id',
  `sort_path` varchar(255) NOT NULL DEFAULT '0' COMMENT '类别路径',
  `sort` smallint(5) NOT NULL DEFAULT '1' COMMENT '类别排序',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态 0已删除 1已启用 2已禁用'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- 转存表中的数据 `Webmeng_category_video'`
--

INSERT INTO `Webmeng_category_video'` (`cat_id`, `cat_name`, `intro`, `level`, `parent_id`, `sort_path`, `sort`, `status`) VALUES
(1, '关于公司', '', 0, 0, '0,1,', 1, 1),
(2, '联系方式', '22', 0, 0, '0,2,', 2, 1),
(3, '帮助中心', '', 0, 0, '0,3,', 3, 1);

--
-- Indexes for dumped tables
--

--
-- Indexes for table `Webmeng_category_video'`
--
ALTER TABLE `Webmeng_category_video'`
  ADD PRIMARY KEY (`cat_id`);

--
-- 在导出的表使用AUTO_INCREMENT
--

--
-- 使用表AUTO_INCREMENT `Webmeng_category_video'`