diff options
Diffstat (limited to 'phpBB/install/schemas/sqlite_schema.sql')
-rw-r--r-- | phpBB/install/schemas/sqlite_schema.sql | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql index 9679f061ef..39f12d16a7 100644 --- a/phpBB/install/schemas/sqlite_schema.sql +++ b/phpBB/install/schemas/sqlite_schema.sql @@ -438,7 +438,6 @@ CREATE TABLE phpbb_privmsgs ( message_text mediumtext(16777215), message_edit_reason varchar(100), message_edit_user mediumint(8) NOT NULL DEFAULT '0', - message_checksum varchar(32) NOT NULL DEFAULT '', message_encoding varchar(11) NOT NULL DEFAULT 'iso-8859-1', message_attachment tinyint(1) NOT NULL DEFAULT '0', bbcode_bitfield int(11) NOT NULL DEFAULT '0', @@ -816,7 +815,7 @@ CREATE TABLE phpbb_topics ( topic_moved_id mediumint(8) NOT NULL DEFAULT '0', topic_bumped tinyint(1) NOT NULL DEFAULT '0', topic_bumper mediumint(8) NOT NULL DEFAULT '0', - poll_title varchar(255) NOT NULL, + poll_title varchar(255) NOT NULL DEFAULT '', poll_start int(11) NOT NULL DEFAULT '0', poll_length int(11) NOT NULL DEFAULT '0', poll_max_options tinyint(4) NOT NULL DEFAULT '1', @@ -894,7 +893,7 @@ CREATE TABLE phpbb_users ( user_lang varchar(30) NOT NULL DEFAULT '', user_timezone decimal(5,2) NOT NULL DEFAULT '0.0', user_dst tinyint(1) NOT NULL DEFAULT '0', - user_dateformat varchar(15) NOT NULL DEFAULT 'd M Y H:i', + user_dateformat varchar(30) NOT NULL DEFAULT 'd M Y H:i', user_style tinyint(4) NOT NULL DEFAULT '0', user_rank int(11) DEFAULT '0', user_colour varchar(6) NOT NULL DEFAULT '', |