|
From: Paul S. O. <ps...@us...> - 2002-05-16 12:38:02
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv4029/db/schemas
Modified Files:
Tag: phpBB-2_0_0
mysql_schema.sql
Log Message:
Remove auto_increment from user and group fields since we're not currently using this ...
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.17.2.1
retrieving revision 1.17.2.2
diff -C2 -r1.17.2.1 -r1.17.2.2
*** mysql_schema.sql 8 Apr 2002 00:17:41 -0000 1.17.2.1
--- mysql_schema.sql 16 May 2002 12:33:06 -0000 1.17.2.2
***************
*** 43,47 ****
#
CREATE TABLE phpbb_groups (
! group_id mediumint(8) NOT NULL auto_increment,
group_type tinyint(4) DEFAULT '1' NOT NULL,
group_name varchar(40) NOT NULL,
--- 43,47 ----
#
CREATE TABLE phpbb_groups (
! group_id mediumint(8) NOT NULL,
group_type tinyint(4) DEFAULT '1' NOT NULL,
group_name varchar(40) NOT NULL,
***************
*** 454,458 ****
#
CREATE TABLE phpbb_users (
! user_id mediumint(8) NOT NULL auto_increment,
user_active tinyint(1) DEFAULT '1',
username varchar(25) NOT NULL,
--- 454,458 ----
#
CREATE TABLE phpbb_users (
! user_id mediumint(8) NOT NULL,
user_active tinyint(1) DEFAULT '1',
username varchar(25) NOT NULL,
|