mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 15:27:42 +02:00
Fix for some small problems with upgrade
git-svn-id: file:///svn/phpbb/trunk@1548 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -472,9 +472,9 @@ CREATE TABLE phpbb_users (
|
|||||||
user_emailtime int(11),
|
user_emailtime int(11),
|
||||||
user_viewemail tinyint(1),
|
user_viewemail tinyint(1),
|
||||||
user_attachsig tinyint(1),
|
user_attachsig tinyint(1),
|
||||||
user_allowhtml tinyint(1),
|
user_allowhtml tinyint(1) DEFAULT '1',
|
||||||
user_allowbbcode tinyint(1),
|
user_allowbbcode tinyint(1) DEFAULT '1',
|
||||||
user_allowsmile tinyint(1),
|
user_allowsmile tinyint(1) DEFAULT '1',
|
||||||
user_allowavatar tinyint(1) DEFAULT '1' NOT NULL,
|
user_allowavatar tinyint(1) DEFAULT '1' NOT NULL,
|
||||||
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
|
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
|
||||||
user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL,
|
user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL,
|
||||||
|
@@ -454,9 +454,9 @@ CREATE TABLE phpbb_users (
|
|||||||
user_posts number(4) DEFAULT '0' NOT NULL,
|
user_posts number(4) DEFAULT '0' NOT NULL,
|
||||||
user_viewemail number(4),
|
user_viewemail number(4),
|
||||||
user_attachsig number(4),
|
user_attachsig number(4),
|
||||||
user_allowhtml number(4),
|
user_allowhtml number(4) DEFAULT '1',
|
||||||
user_allowbbcode number(4),
|
user_allowbbcode number(4) DEFAULT '1',
|
||||||
user_allowsmile number(4),
|
user_allowsmile number(4) DEFAULT '1',
|
||||||
user_allow_pm number(4) DEFAULT '1' NOT NULL,
|
user_allow_pm number(4) DEFAULT '1' NOT NULL,
|
||||||
user_allowavatar number(4) DEFAULT '1' NOT NULL,
|
user_allowavatar number(4) DEFAULT '1' NOT NULL,
|
||||||
user_allow_viewonline number(4) DEFAULT '1' NOT NULL,
|
user_allow_viewonline number(4) DEFAULT '1' NOT NULL,
|
||||||
|
@@ -467,9 +467,9 @@ CREATE TABLE phpbb_users (
|
|||||||
user_emailtime int4,
|
user_emailtime int4,
|
||||||
user_viewemail int2,
|
user_viewemail int2,
|
||||||
user_attachsig int2,
|
user_attachsig int2,
|
||||||
user_allowhtml int2,
|
user_allowhtml int2 DEFAULT '1',
|
||||||
user_allowbbcode int2,
|
user_allowbbcode int2 DEFAULT '1',
|
||||||
user_allowsmile int2,
|
user_allowsmile int2 DEFAULT '1',
|
||||||
user_allow_pm int2 DEFAULT '1' NOT NULL,
|
user_allow_pm int2 DEFAULT '1' NOT NULL,
|
||||||
user_allowavatar int2 DEFAULT '1' NOT NULL,
|
user_allowavatar int2 DEFAULT '1' NOT NULL,
|
||||||
user_allow_viewonline int2 DEFAULT '1' NOT NULL,
|
user_allow_viewonline int2 DEFAULT '1' NOT NULL,
|
||||||
|
Reference in New Issue
Block a user