aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-10-28 21:23:49 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-10-28 21:23:49 +0000
commited58e166f5463e616ca0025623774f2cfb9c04e9 (patch)
treed065483927ff1844f5a9ac152d2b0fe55e7580a6 /phpBB/install
parentedbe99feb66b67eaa1a0a29b093dbdf56bd789fb (diff)
downloadforums-ed58e166f5463e616ca0025623774f2cfb9c04e9.tar
forums-ed58e166f5463e616ca0025623774f2cfb9c04e9.tar.gz
forums-ed58e166f5463e616ca0025623774f2cfb9c04e9.tar.bz2
forums-ed58e166f5463e616ca0025623774f2cfb9c04e9.tar.xz
forums-ed58e166f5463e616ca0025623774f2cfb9c04e9.zip
fix "not able to reply to announcements" and wrong notify checkbox status.
git-svn-id: file:///svn/phpbb/trunk@4627 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 04c49dac10..03a63b73e0 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -250,7 +250,7 @@ CREATE TABLE phpbb_groups (
group_display tinyint(1) DEFAULT '0' NOT NULL,
group_avatar varchar(100) DEFAULT '' NOT NULL,
group_avatar_type tinyint(4) DEFAULT '0' NOT NULL,
- group_avatar_width tinyint(4 UNSIGNED DEFAULT '0' NOT NULL,
+ group_avatar_width tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
group_avatar_height tinyint(4) UNSIGNED DEFAULT '0' NOT NULL,
group_rank smallint(5) DEFAULT '-1' NOT NULL,
group_colour varchar(6) DEFAULT '' NOT NULL,
@@ -729,6 +729,7 @@ CREATE TABLE phpbb_users (
user_sortby_type varchar(1) DEFAULT '' NOT NULL,
user_sortby_dir varchar(1) DEFAULT '' NOT NULL,
user_show_days tinyint(1) DEFAULT '' NOT NULL,
+ user_notify tinyint(1) DEFAULT '0' NOT NULL,
user_notify_pm tinyint(1) DEFAULT '1' NOT NULL,
user_notify_type tinyint(4) DEFAULT '0' NOT NULL,
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,