From cf69a7a681828948ccc4333b4655e8f497025e8d Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Sat, 27 Mar 2010 07:15:02 +0000 Subject: [PATCH] + add keywords field to story. --- db/update0.6.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/db/update0.6.sql b/db/update0.6.sql index 6c3260f277..bd2802f048 100644 --- a/db/update0.6.sql +++ b/db/update0.6.sql @@ -20,4 +20,7 @@ CREATE TABLE `zentao`.`zt_userQuery` ( ) ENGINE = MYISAM; -- 2010-03-27 fix bug 43 -update zt_projectStory,zt_story set zt_projectStory.product=zt_story.product where zt_projectStory.story=zt_story.id +update zt_projectStory,zt_story set zt_projectStory.product=zt_story.product where zt_projectStory.story=zt_story.id; + +-- 2010-03-27 add keywords to story. +ALTER TABLE `zt_story` ADD `keywords` VARCHAR( 255 ) NOT NULL ;