Update of /cvsroot/yafdotnet/yafsrc/install
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv15011/install
Modified Files:
tables.sql
Log Message:
not exists should have been exists... always do that!
Index: tables.sql
===================================================================
RCS file: /cvsroot/yafdotnet/yafsrc/install/tables.sql,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tables.sql 7 Mar 2007 11:58:59 -0000 1.5
--- tables.sql 7 Mar 2007 12:35:55 -0000 1.6
***************
*** 623,627 ****
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
--- 623,627 ----
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
|