update2.2.sql 309 B

12345
  1. ALTER TABLE `zt_doc`
  2. ADD `parent` smallint(5) unsigned NOT NULL DEFAULT '0' AFTER `type`,
  3. ADD `path` char(255) COLLATE 'utf8_general_ci' NOT NULL DEFAULT '' AFTER `parent`,
  4. ADD `grade` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `path`,
  5. ADD `order` smallint(5) unsigned NOT NULL DEFAULT '0' AFTER `grade`;