User posts was not being set as 0 by DEFAULT

git-svn-id: file:///svn/phpbb/trunk@835 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-08-10 13:58:20 +00:00
parent 3e197abb06
commit 38444b8f10
2 changed files with 2 additions and 2 deletions

View file

@ -462,7 +462,7 @@ CREATE TABLE phpbb_users (
user_aim varchar(255), user_aim varchar(255),
user_yim varchar(255), user_yim varchar(255),
user_msnm varchar(255), user_msnm varchar(255),
user_posts int(11) DEFAULT '0', user_posts int(11) DEFAULT '0' NOT NULL,
user_actkey varchar(32), user_actkey varchar(32),
user_newpasswd varchar(32), user_newpasswd varchar(32),
user_notify tinyint(3), user_notify tinyint(3),

View file

@ -451,7 +451,7 @@ CREATE TABLE phpbb_users (
user_aim varchar(255), user_aim varchar(255),
user_yim varchar(255), user_yim varchar(255),
user_msnm varchar(255), user_msnm varchar(255),
user_posts int4 DEFAULT '0', user_posts int4 DEFAULT '0' NOT NULL,
user_viewemail int2, user_viewemail int2,
user_attachsig int2, user_attachsig int2,
user_allowhtml int2, user_allowhtml int2,