aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-02-04 23:59:45 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-02-04 23:59:45 +0000
commitfb0410903af19070ed42658e77a22bd9382e3b6f (patch)
tree0150213822cc7f3a3db5b9055391ff350101b971 /phpBB/install/schemas
parent05235d3452c067894acc53c753bdb0929600b48f (diff)
downloadforums-fb0410903af19070ed42658e77a22bd9382e3b6f.tar
forums-fb0410903af19070ed42658e77a22bd9382e3b6f.tar.gz
forums-fb0410903af19070ed42658e77a22bd9382e3b6f.tar.bz2
forums-fb0410903af19070ed42658e77a22bd9382e3b6f.tar.xz
forums-fb0410903af19070ed42658e77a22bd9382e3b6f.zip
- Please don't hurt me :p
git-svn-id: file:///svn/phpbb/trunk@5524 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r--phpBB/install/schemas/firebird_schema.sql2
-rw-r--r--phpBB/install/schemas/mssql_schema.sql2
-rw-r--r--phpBB/install/schemas/mysql_schema.sql2
-rw-r--r--phpBB/install/schemas/oracle_schema.sql2
-rw-r--r--phpBB/install/schemas/postgres_schema.sql2
-rw-r--r--phpBB/install/schemas/sqlite_schema.sql2
6 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/install/schemas/firebird_schema.sql b/phpBB/install/schemas/firebird_schema.sql
index 91f23238cd..813f490b1f 100644
--- a/phpBB/install/schemas/firebird_schema.sql
+++ b/phpBB/install/schemas/firebird_schema.sql
@@ -116,7 +116,7 @@ CREATE TABLE phpbb_config (
CREATE TABLE phpbb_confirm (
confirm_id VARCHAR(32) NOT NULL,
session_id VARCHAR(32) NOT NULL,
- code VARCHAR(6) NOT NULL
+ code VARCHAR(8) NOT NULL
);;
# phpbb_disallow
diff --git a/phpBB/install/schemas/mssql_schema.sql b/phpBB/install/schemas/mssql_schema.sql
index 2065f86f43..8afbf3cede 100644
--- a/phpBB/install/schemas/mssql_schema.sql
+++ b/phpBB/install/schemas/mssql_schema.sql
@@ -121,7 +121,7 @@ GO
CREATE TABLE [phpbb_confirm] (
[confirm_id] [varchar] (32) NOT NULL ,
[session_id] [varchar] (32) NOT NULL ,
- [code] [varchar] (6) NOT NULL
+ [code] [varchar] (8) NOT NULL
) ON [PRIMARY]
GO
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 169fc71ad4..2440791e4b 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -140,7 +140,7 @@ CREATE TABLE phpbb_config (
CREATE TABLE phpbb_confirm (
confirm_id char(32) DEFAULT '' NOT NULL,
session_id char(32) DEFAULT '' NOT NULL,
- code char(6) DEFAULT '' NOT NULL,
+ code char(8) DEFAULT '' NOT NULL,
PRIMARY KEY (session_id,confirm_id)
);
diff --git a/phpBB/install/schemas/oracle_schema.sql b/phpBB/install/schemas/oracle_schema.sql
index eb076921d9..30d818fd0d 100644
--- a/phpBB/install/schemas/oracle_schema.sql
+++ b/phpBB/install/schemas/oracle_schema.sql
@@ -309,7 +309,7 @@ CREATE INDEX is_dynamic on phpbb_config (is_dynamic)
CREATE TABLE phpbb_confirm (
confirm_id varchar2(32) DEFAULT '',
session_id varchar2(32) DEFAULT '',
- code varchar2(6) DEFAULT '',
+ code varchar2(8) DEFAULT '',
CONSTRAINT pk_phpbb_confirm PRIMARY KEY (session_id, confirm_id)
)
/
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql
index e840387efe..e34319427a 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -183,7 +183,7 @@ CREATE INDEX is_dynamic_phpbb_config_index ON phpbb_config (is_dynamic);
CREATE TABLE phpbb_confirm (
confirm_id varchar(32) DEFAULT '' NOT NULL,
session_id varchar(32) DEFAULT '' NOT NULL,
- code varchar(6) DEFAULT '' NOT NULL,
+ code varchar(8) DEFAULT '' NOT NULL,
PRIMARY KEY (session_id,confirm_id)
);
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql
index 32f7f3596d..ee61fa6be0 100644
--- a/phpBB/install/schemas/sqlite_schema.sql
+++ b/phpBB/install/schemas/sqlite_schema.sql
@@ -144,7 +144,7 @@ CREATE INDEX is_dynamic_phpbb_config on phpbb_config (is_dynamic);
CREATE TABLE phpbb_confirm (
confirm_id char(32) NOT NULL DEFAULT '',
session_id char(32) NOT NULL DEFAULT '',
- code char(6) NOT NULL DEFAULT '',
+ code char(8) NOT NULL DEFAULT '',
PRIMARY KEY (session_id, confirm_id)
);