From: willcast Date: Wed, 5 Nov 2003 16:41:56 +0000 (+0000) Subject: - Removing tinyints from Postgresql's db squema. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=53bc5a9433f0b2ddd72d2f7b60de60b8b2873efa;p=moodle.git - Removing tinyints from Postgresql's db squema. --- diff --git a/mod/glossary/db/postgres7.sql b/mod/glossary/db/postgres7.sql index c16c5e981e..6c737d8674 100644 --- a/mod/glossary/db/postgres7.sql +++ b/mod/glossary/db/postgres7.sql @@ -46,7 +46,7 @@ CREATE TABLE prefix_glossary_entries ( sourceglossaryid int4 NOT NULL default '0', usedynalink int2 NOT NULL default '1', casesensitive int2 NOT NULL default '0', - fullmatch tinyint(2) NOT NULL default '1', + fullmatch int2 NOT NULL default '1', PRIMARY KEY(id) );