1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00
git-svn-id: file:///svn/phpbb/trunk@7826 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2007-07-03 05:12:59 +00:00
parent c0f52d91ef
commit d2451b9065
12 changed files with 41 additions and 22 deletions

View File

@@ -97,8 +97,8 @@ CREATE TABLE phpbb_banlist (
ban_start INTEGER UNSIGNED NOT NULL DEFAULT '0',
ban_end INTEGER UNSIGNED NOT NULL DEFAULT '0',
ban_exclude INTEGER UNSIGNED NOT NULL DEFAULT '0',
ban_reason text(65535) NOT NULL DEFAULT '',
ban_give_reason text(65535) NOT NULL DEFAULT ''
ban_reason varchar(255) NOT NULL DEFAULT '',
ban_give_reason varchar(255) NOT NULL DEFAULT ''
);
CREATE INDEX phpbb_banlist_ban_end ON phpbb_banlist (ban_end);