From: Greg Sabino Mullane Date: Fri, 3 Sep 2010 21:08:16 +0000 (+0000) Subject: Bump cl_collation from smallint to a text X-Git-Tag: 1.31.0-rc.0~35193 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=7eac02fe488f7bedcba9875ebf706a71a01ce6fd;p=lhc%2Fweb%2Fwiklou.git Bump cl_collation from smallint to a text --- diff --git a/maintenance/postgres/tables.sql b/maintenance/postgres/tables.sql index fc4c594107..43d960a320 100644 --- a/maintenance/postgres/tables.sql +++ b/maintenance/postgres/tables.sql @@ -190,7 +190,7 @@ CREATE TABLE categorylinks ( cl_sortkey TEXT NULL, cl_timestamp TIMESTAMPTZ NOT NULL, cl_sortkey_prefix TEXT NOT NULL DEFAULT '', - cl_collation SMALLINT NOT NULL DEFAULT 0, + cl_collation TEXT NOT NULL DEFAULT 0, cl_type TEXT NOT NULL DEFAULT 'page' ); CREATE UNIQUE INDEX cl_from ON categorylinks (cl_from, cl_to);