diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-31 21:47:10 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-31 21:47:10 +0000 |
commit | 6e3908893d90d5490ff188de53a8edd73f528606 (patch) | |
tree | fd2b295daf9c7a5a3d925af14765e5c8bb46440b /phpBB/install | |
parent | 372c2d65d1bc613473ffa1773615e763c3326be6 (diff) | |
download | forums-6e3908893d90d5490ff188de53a8edd73f528606.tar forums-6e3908893d90d5490ff188de53a8edd73f528606.tar.gz forums-6e3908893d90d5490ff188de53a8edd73f528606.tar.bz2 forums-6e3908893d90d5490ff188de53a8edd73f528606.tar.xz forums-6e3908893d90d5490ff188de53a8edd73f528606.zip |
Improve feedback for banned users
git-svn-id: file:///svn/phpbb/trunk@3769 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index d367313341..35f8a6d2bd 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -123,7 +123,8 @@ CREATE TABLE phpbb_banlist ( ban_start int(11), ban_end int(11), ban_exclude tinyint(1) DEFAULT '0' NOT NULL, - ban_reason varchar(255), + ban_reason varchar(255), + ban_give_reason varchar(255), PRIMARY KEY (ban_id) ); |