From: dbs Date: Sun, 6 Jan 2008 18:41:54 +0000 (+0000) Subject: Typo fix in the Python IDL module (virtul->virtual). X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=fd7a7c5182512b133324e7b295f94bb8a8003000;p=Evergreen.git Typo fix in the Python IDL module (virtul->virtual). Create acquisitions schema as part of build-db.sh. git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8326 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/python/oils/utils/idl.py b/Open-ILS/src/python/oils/utils/idl.py index 6c91aafb70..ddba70c388 100644 --- a/Open-ILS/src/python/oils/utils/idl.py +++ b/Open-ILS/src/python/oils/utils/idl.py @@ -155,7 +155,7 @@ class IDLClass(object): self.links = [] if self.virtual and self.virtual.lower() == 'true': - self.virtul = True + self.virtual = True else: self.virtual = False @@ -182,7 +182,7 @@ class IDLField(object): self.position = kwargs.get('position') if self.virtual and self.virtual.lower() == 'true': - self.virtul = True + self.virtual = True else: self.virtual = False diff --git a/Open-ILS/src/sql/Pg/build-db.sh b/Open-ILS/src/sql/Pg/build-db.sh index 7d328baa88..276b3f1078 100755 --- a/Open-ILS/src/sql/Pg/build-db.sh +++ b/Open-ILS/src/sql/Pg/build-db.sh @@ -17,6 +17,7 @@ PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 040.schema.ass PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 070.schema.container.sql PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 080.schema.money.sql PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 090.schema.action.sql +PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 200.schema.acq.sql PGPASSWORD=$5 PGUSER=$4 PGHOST=$1 PGPORT=$2 PGDATABASE=$3 psql -f 500.view.cross-schema.sql