Postgres: Change math_inputhash and math_outputhash to bytea for bug #8716
authorGreg Sabino Mullane <greg@users.mediawiki.org>
Sat, 17 Mar 2007 20:00:09 +0000 (20:00 +0000)
committerGreg Sabino Mullane <greg@users.mediawiki.org>
Sat, 17 Mar 2007 20:00:09 +0000 (20:00 +0000)
RELEASE-NOTES
maintenance/postgres/tables.sql

index ccb02d9..1c400bd 100644 (file)
@@ -275,6 +275,7 @@ lighter making things easier to read.
 * (bug 9019) No warning during upload if image description page exists, but no
   image
 * (bug 8582) Allow thumbnailing when imagesize has a space.
+* (bug 8716) Change math_inputhash and math_outputhash to byte for Postgres
 
 Support protocols other than HTTP in LinkFilter
 
index 8f9657b..5c9a28d 100644 (file)
@@ -342,8 +342,8 @@ CREATE UNIQUE INDEX wl_user_namespace_title ON watchlist (wl_namespace, wl_title
 
 
 CREATE TABLE math (
-  math_inputhash              TEXT      NOT NULL  UNIQUE,
-  math_outputhash             TEXT      NOT NULL,
+  math_inputhash              BYTEA     NOT NULL  UNIQUE,
+  math_outputhash             BYTEA     NOT NULL,
   math_html_conservativeness  SMALLINT  NOT NULL,
   math_html                   TEXT,
   math_mathml                 TEXT