mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 09:46:46 +02:00
some changes before i forget...
git-svn-id: file:///svn/phpbb/trunk@5916 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -462,25 +462,25 @@ CREATE TABLE phpbb_privmsgs (
|
||||
msg_id INTEGER PRIMARY KEY NOT NULL,
|
||||
root_level mediumint(8) NOT NULL DEFAULT '0',
|
||||
author_id mediumint(8) NOT NULL DEFAULT '0',
|
||||
icon_id tinyint(4) NOT NULL DEFAULT '1',
|
||||
icon_id tinyint(4) NOT NULL DEFAULT '0',
|
||||
author_ip varchar(40) NOT NULL DEFAULT '',
|
||||
message_time int(11) NOT NULL DEFAULT '0',
|
||||
enable_bbcode tinyint(1) NOT NULL DEFAULT '1',
|
||||
enable_smilies tinyint(1) NOT NULL DEFAULT '1',
|
||||
enable_magic_url tinyint(1) NOT NULL DEFAULT '1',
|
||||
enable_sig tinyint(1) NOT NULL DEFAULT '1',
|
||||
message_subject text(65535),
|
||||
message_text mediumtext(16777215),
|
||||
message_edit_reason text(65535),
|
||||
message_edit_user mediumint(8) NOT NULL DEFAULT '0',
|
||||
message_subject text(65535) NOT NULL,
|
||||
message_text mediumtext(16777215) NOT NULL,
|
||||
message_edit_reason text(65535) NULL,
|
||||
message_edit_user mediumint(8) NULL DEFAULT '0',
|
||||
message_encoding varchar(20) NOT NULL DEFAULT 'iso-8859-1',
|
||||
message_attachment tinyint(1) NOT NULL DEFAULT '0',
|
||||
bbcode_bitfield int(11) NOT NULL DEFAULT '0',
|
||||
bbcode_uid varchar(5) NOT NULL DEFAULT '',
|
||||
message_edit_time int(11) NOT NULL DEFAULT '0',
|
||||
message_edit_count smallint(5) NOT NULL DEFAULT '0',
|
||||
to_address text(65535),
|
||||
bcc_address text(65535)
|
||||
message_edit_time int(11) NULL DEFAULT '0',
|
||||
message_edit_count smallint(5) NULL DEFAULT '0',
|
||||
to_address text(65535) NOT NULL,
|
||||
bcc_address text(65535) NOT NULL
|
||||
);
|
||||
|
||||
CREATE INDEX phpbb_privmsgs_author_ip on phpbb_privmsgs (author_ip);
|
||||
|
Reference in New Issue
Block a user