From 2b2c8709ab68abf5c01c0588ef4c512f8ee98634 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 3 Jun 2003 22:01:25 +0000 Subject: [PATCH] missing fields git-svn-id: file:///svn/phpbb/trunk@4077 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index d2b25e0d7e..9755d0b455 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -850,6 +850,9 @@ CREATE TABLE phpbb_users ( user_sortby_dir varchar(1) DEFAULT '' NOT NULL, user_show_days tinyint(1) DEFAULT '' NOT NULL, user_viewimg tinyint(1) DEFAULT '1' NOT NULL, + user_notify tinyint(1) DEFAULT '0' NOT NULL, + user_notify_pm tinyint(1) DEFAULT '1' NOT NULL, + user_popup_pm tinyint(1) DEFAULT '0' NOT NULL, user_viewflash tinyint(1) DEFAULT '1' NOT NULL, user_viewsmilies tinyint(1) DEFAULT '1' NOT NULL, user_viewsigs tinyint(1) DEFAULT '1' NOT NULL, @@ -864,8 +867,6 @@ CREATE TABLE phpbb_users ( user_allow_email tinyint(1) DEFAULT '1' NOT NULL, user_allow_viewonline tinyint(1) DEFAULT '1' NOT NULL, user_allow_viewemail tinyint(1) DEFAULT '1' NOT NULL, - user_notify_pm tinyint(1) DEFAULT '1' NOT NULL, - user_popup_pm tinyint(1) DEFAULT '0' NOT NULL, user_avatar varchar(100) DEFAULT '' NOT NULL, user_avatar_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL, user_avatar_height tinyint(4) UNSIGNED DEFAULT '0' NOT NULL, @@ -877,6 +878,7 @@ CREATE TABLE phpbb_users ( user_aim varchar(255) DEFAULT '' NOT NULL, user_yim varchar(255) DEFAULT '' NOT NULL, user_msnm varchar(255) DEFAULT '' NOT NULL, + user_jabber varhcar(255) DEFAULT '' NOT NULL, user_website varchar(100) DEFAULT '' NOT NULL, user_actkey varchar(32) DEFAULT '' NOT NULL, user_newpasswd varchar(32) DEFAULT '' NOT NULL,