diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-21 13:59:33 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-21 13:59:33 +0000 |
commit | 1ed2ed30728532e78fa4664f8f1fe17fe8d3ec52 (patch) | |
tree | 078ebb41ad01d33d033bbffc912a28a90512cca1 /phpBB/db/schemas/mysql_schema.sql | |
parent | 5047d43ca3bd96160210bdbc8a3eef2d3c01ae54 (diff) | |
download | forums-1ed2ed30728532e78fa4664f8f1fe17fe8d3ec52.tar forums-1ed2ed30728532e78fa4664f8f1fe17fe8d3ec52.tar.gz forums-1ed2ed30728532e78fa4664f8f1fe17fe8d3ec52.tar.bz2 forums-1ed2ed30728532e78fa4664f8f1fe17fe8d3ec52.tar.xz forums-1ed2ed30728532e78fa4664f8f1fe17fe8d3ec52.zip |
Re-fix schemas to allow decimal/real numbers in timezone ...
git-svn-id: file:///svn/phpbb/trunk@2390 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/schemas/mysql_schema.sql')
-rw-r--r-- | phpBB/db/schemas/mysql_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/schemas/mysql_schema.sql b/phpBB/db/schemas/mysql_schema.sql index 8d0e08e545..75e9fffd46 100644 --- a/phpBB/db/schemas/mysql_schema.sql +++ b/phpBB/db/schemas/mysql_schema.sql @@ -463,7 +463,7 @@ CREATE TABLE phpbb_users ( user_regdate int(11) DEFAULT '0' NOT NULL, user_level tinyint(4) DEFAULT '0', user_posts mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, - user_timezone tinyint(4) DEFAULT '0' NOT NULL, + user_timezone float DEFAULT '0' NOT NULL, user_style tinyint(4), user_lang varchar(255), user_dateformat varchar(14) DEFAULT 'd M Y H:i' NOT NULL, |