aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/sqlite_schema.sql
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-12-03 17:36:59 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-12-03 17:36:59 +0000
commitec80eb74aa5874f8790c3435bf4dd9fdf9614c6f (patch)
tree8f42fed41f0e463dd60d499674489edce609d072 /phpBB/install/schemas/sqlite_schema.sql
parent1f7224c6019be5871f8385c6bb4403fd6ea28563 (diff)
downloadforums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar.gz
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar.bz2
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.tar.xz
forums-ec80eb74aa5874f8790c3435bf4dd9fdf9614c6f.zip
#5734
- replaced array_rand($array) with mt_rand(0, sizeof($array) - 1) as array_rand did not take my seed git-svn-id: file:///svn/phpbb/trunk@6705 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/sqlite_schema.sql')
-rw-r--r--phpBB/install/schemas/sqlite_schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql
index ee42bfec4b..ba86abe6e4 100644
--- a/phpBB/install/schemas/sqlite_schema.sql
+++ b/phpBB/install/schemas/sqlite_schema.sql
@@ -160,6 +160,7 @@ CREATE TABLE phpbb_confirm (
session_id char(32) NOT NULL DEFAULT '',
confirm_type tinyint(3) NOT NULL DEFAULT '0',
code varchar(8) NOT NULL DEFAULT '',
+ seed INTEGER UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (session_id, confirm_id)
);