From: Jaben C. <ja...@us...> - 2007-03-29 08:38:52
|
Update of /cvsroot/yafdotnet/yafsrc/install In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv27763/yafsrc/install Modified Files: Tag: v1_0_2_NETv2 tables.sql Log Message: fix Index: tables.sql =================================================================== RCS file: /cvsroot/yafdotnet/yafsrc/install/tables.sql,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** tables.sql 8 Feb 2007 00:48:14 -0000 1.2.2.3 --- tables.sql 29 Mar 2007 08:37:58 -0000 1.2.2.4 *************** *** 605,609 **** GO ! if not exists(select 1 from syscolumns where id=object_id(N'yaf_Registry') and name=N'Value' and xtype<>99) alter table yaf_Registry alter column Value ntext null GO --- 605,609 ---- GO ! if exists(select 1 from syscolumns where id=object_id(N'yaf_Registry') and name=N'Value' and xtype<>99) alter table yaf_Registry alter column Value ntext null GO |