diff options
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r-- | phpBB/install/schemas/postgres_schema.sql | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql index c3bca14354..f695ab8be6 100644 --- a/phpBB/install/schemas/postgres_schema.sql +++ b/phpBB/install/schemas/postgres_schema.sql @@ -580,7 +580,6 @@ CREATE TABLE phpbb_privmsgs ( message_text text, message_edit_reason varchar(100), message_edit_user INT4 DEFAULT '0' NOT NULL, - message_checksum varchar(32) DEFAULT '' NOT NULL, message_encoding varchar(11) DEFAULT 'iso-8859-1' NOT NULL, message_attachment INT2 DEFAULT '0' NOT NULL, bbcode_bitfield INT4 DEFAULT '0' NOT NULL, @@ -1066,7 +1065,7 @@ CREATE TABLE phpbb_topics ( topic_moved_id INT4 DEFAULT '0' NOT NULL, topic_bumped INT2 DEFAULT '0' NOT NULL, topic_bumper INT4 DEFAULT '0' NOT NULL, - poll_title varchar(255) NOT NULL, + poll_title varchar(255) DEFAULT '' NOT NULL, poll_start INT4 DEFAULT '0' NOT NULL, poll_length INT4 DEFAULT '0' NOT NULL, poll_max_options INT2 DEFAULT '1' NOT NULL, @@ -1175,7 +1174,7 @@ CREATE TABLE phpbb_users ( user_lang varchar(30) DEFAULT '' NOT NULL, user_timezone decimal(5,2) DEFAULT '0.0' NOT NULL, user_dst INT2 DEFAULT '0' NOT NULL, - user_dateformat varchar(15) DEFAULT 'd M Y H:i' NOT NULL, + user_dateformat varchar(30) DEFAULT 'd M Y H:i' NOT NULL, user_style INT2 DEFAULT '0' NOT NULL, user_rank INT4 DEFAULT '0', user_colour varchar(6) DEFAULT '' NOT NULL, |