mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
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:
parent
3e197abb06
commit
38444b8f10
2 changed files with 2 additions and 2 deletions
|
@ -462,7 +462,7 @@ CREATE TABLE phpbb_users (
|
|||
user_aim varchar(255),
|
||||
user_yim 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_newpasswd varchar(32),
|
||||
user_notify tinyint(3),
|
||||
|
|
|
@ -451,7 +451,7 @@ CREATE TABLE phpbb_users (
|
|||
user_aim varchar(255),
|
||||
user_yim varchar(255),
|
||||
user_msnm varchar(255),
|
||||
user_posts int4 DEFAULT '0',
|
||||
user_posts int4 DEFAULT '0' NOT NULL,
|
||||
user_viewemail int2,
|
||||
user_attachsig int2,
|
||||
user_allowhtml int2,
|
||||
|
|
Loading…
Add table
Reference in a new issue