mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
NOT NULL when should be NULL, doubled up a_event
git-svn-id: file:///svn/phpbb/trunk@3403 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
6c4096c67b
commit
09d4e7cf7c
2 changed files with 2 additions and 3 deletions
|
@ -139,7 +139,6 @@ INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_words', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_icons', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_icons', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_bbcode', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_bbcode', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_attach', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_attach', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_events', 1);
|
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_email', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_email', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_styles', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_styles', 1);
|
||||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_user', 1);
|
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_user', 1);
|
||||||
|
|
|
@ -85,8 +85,8 @@ CREATE TABLE phpbb_auth_users (
|
||||||
#
|
#
|
||||||
CREATE TABLE phpbb_banlist (
|
CREATE TABLE phpbb_banlist (
|
||||||
ban_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
ban_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||||
ban_userid mediumint(8) UNSIGNED NOT NULL,
|
ban_userid mediumint(8) UNSIGNED,
|
||||||
ban_ip varchar(40) NOT NULL,
|
ban_ip varchar(40),
|
||||||
ban_email varchar(50),
|
ban_email varchar(50),
|
||||||
ban_start int(11),
|
ban_start int(11),
|
||||||
ban_end int(11),
|
ban_end int(11),
|
||||||
|
|
Loading…
Add table
Reference in a new issue