|
From: Paul S. O. <ps...@us...> - 2002-03-03 16:51:32
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv2186/db/schemas
Modified Files:
mssql_basic.sql
Log Message:
Remove IDENTITY SET for forums
Index: mssql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mssql_basic.sql,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** mssql_basic.sql 25 Feb 2002 22:16:21 -0000 1.11
--- mssql_basic.sql 3 Mar 2002 16:51:27 -0000 1.12
***************
*** 83,92 ****
-- Forums
*/
- SET IDENTITY_INSERT phpbb_forums ON;
-
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_announce, auth_sticky, auth_pollcreate, auth_vote, auth_attachments) VALUES (1, 1, 'Test Forum 1', 'This is just a test forum, nothing special here.', '', 1, 1, 1, 1, '', 1, '', '', '', '', 1, 1, 3, 1, 1, 1, 3);
-
- SET IDENTITY_INSERT phpbb_forums OFF;
-
/*
--- 83,87 ----
|