aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/postgres_schema.sql
diff options
context:
space:
mode:
authorBart van Bragt <bartvb@users.sourceforge.net>2005-05-07 14:19:14 +0000
committerBart van Bragt <bartvb@users.sourceforge.net>2005-05-07 14:19:14 +0000
commit2f68ac78c617ebc542f5f0ec0ca37628b79e407b (patch)
treeb64c12f437cc3846b0bff612933f580937fcacb0 /phpBB/install/schemas/postgres_schema.sql
parent81c7144f6847e964057762e94dc197ac77a8f24e (diff)
downloadforums-2f68ac78c617ebc542f5f0ec0ca37628b79e407b.tar
forums-2f68ac78c617ebc542f5f0ec0ca37628b79e407b.tar.gz
forums-2f68ac78c617ebc542f5f0ec0ca37628b79e407b.tar.bz2
forums-2f68ac78c617ebc542f5f0ec0ca37628b79e407b.tar.xz
forums-2f68ac78c617ebc542f5f0ec0ca37628b79e407b.zip
Changed the default charset from -15 to -1. Make sure that you set 'post_encoding' in the posts table and 'message_encoding' in the private messages table to 'iso-8859-1' after this update.
git-svn-id: file:///svn/phpbb/trunk@5144 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/postgres_schema.sql')
-rw-r--r--phpBB/install/schemas/postgres_schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/schemas/postgres_schema.sql b/phpBB/install/schemas/postgres_schema.sql
index 9ce7f4864c..b018079a51 100644
--- a/phpBB/install/schemas/postgres_schema.sql
+++ b/phpBB/install/schemas/postgres_schema.sql
@@ -517,7 +517,7 @@ CREATE TABLE phpbb_posts (
post_subject varchar(60),
post_text text,
post_checksum varchar(32) NOT NULL,
- post_encoding varchar(11) DEFAULT 'iso-8859-15' NOT NULL,
+ post_encoding varchar(11) DEFAULT 'iso-8859-1' NOT NULL,
post_attachment INT2 DEFAULT '0' NOT NULL,
bbcode_bitfield INT4 DEFAULT '0' NOT NULL,
bbcode_uid varchar(5) DEFAULT '' NOT NULL,
@@ -568,7 +568,7 @@ CREATE TABLE phpbb_privmsgs (
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-15' 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,
bbcode_uid varchar(5) DEFAULT '' NOT NULL,