+ add status field to user table.

This commit is contained in:
wangchunsheng
2010-01-25 07:21:17 +00:00
parent 3882c4cae0
commit b4ac1ae4e9
+4
View File
@@ -28,3 +28,7 @@ CREATE TABLE IF NOT EXISTS `zt_release` (
-- 20100115: fix bug 14
ALTER TABLE `zt_productPlan` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
-- 20100125 user表增加status字段。
ALTER TABLE `zt_user` ADD `status` VARCHAR( 30 ) NOT NULL DEFAULT 'active',
ADD INDEX ( STATUS )