From: miker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Tue, 16 Feb 2010 16:53:01 +0000 (+0000)
Subject: cut-and-paste-o spotted by Scott McKellar
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=70a22cb6f5cc3246e1d339ccf3dd9b964bbfd1f5;p=evergreen%2Ftadl.git

cut-and-paste-o spotted by Scott McKellar

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15553 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/src/sql/Pg/upgrade/0162.schema.acq-invoicing.sql b/Open-ILS/src/sql/Pg/upgrade/0162.schema.acq-invoicing.sql
index 92e7dbad80..67bd82bd2d 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0162.schema.acq-invoicing.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0162.schema.acq-invoicing.sql
@@ -6,8 +6,8 @@ CREATE TABLE acq.invoice_method (
     code    TEXT    PRIMARY KEY,
     name    TEXT    NOT NULL -- i18n-ize
 );
-INSERT INTO acq.invoice_item_type (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
-INSERT INTO acq.invoice_item_type (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
+INSERT INTO acq.invoice_method (code,name) VALUES ('EDI',oils_i18n_gettext('EDI', 'EDI', 'acqim', 'name'));
+INSERT INTO acq.invoice_method (code,name) VALUES ('PPR',oils_i18n_gettext('PPR', 'Paper', 'acqit', 'name'));
 
 
 CREATE TABLE acq.invoice (