From: Mike Rylander Date: Tue, 14 Jan 2014 21:30:17 +0000 (-0500) Subject: Add intarray extension X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=76978e3bd437b62dc078f30d32698be67c696c83;p=working%2FEvergreen.git Add intarray extension We need intarray for GIN index support of integer arrays, which is how we'll be storing the in-use record attribute value identifiers. Signed-off-by: Mike Rylander --- diff --git a/Open-ILS/src/sql/Pg/create_database_extensions.sql b/Open-ILS/src/sql/Pg/create_database_extensions.sql index e06ac598b9..b73a87168e 100644 --- a/Open-ILS/src/sql/Pg/create_database_extensions.sql +++ b/Open-ILS/src/sql/Pg/create_database_extensions.sql @@ -19,3 +19,4 @@ CREATE LANGUAGE plperlu; CREATE EXTENSION tablefunc; CREATE EXTENSION xml2; CREATE EXTENSION hstore; +CREATE EXTENSION intarray;