From: erickson Date: Tue, 9 Feb 2010 20:38:27 +0000 (+0000) Subject: lineitem item_count was changed to a virtual field in the IDL some time ago. the... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d6d8f09ec11ac03223cea4fdb784fd991aec5933;p=contrib%2FConifer.git lineitem item_count was changed to a virtual field in the IDL some time ago. the column was never used. removing from the schema for future installs git-svn-id: svn://svn.open-ils.org/ILS/trunk@15485 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/200.schema.acq.sql b/Open-ILS/src/sql/Pg/200.schema.acq.sql index 4a2e1a2338..be898cbe4e 100644 --- a/Open-ILS/src/sql/Pg/200.schema.acq.sql +++ b/Open-ILS/src/sql/Pg/200.schema.acq.sql @@ -412,7 +412,6 @@ CREATE TABLE acq.lineitem ( marc TEXT NOT NULL, eg_bib_id INT REFERENCES biblio.record_entry (id) DEFERRABLE INITIALLY DEFERRED, source_label TEXT, - item_count INT NOT NULL DEFAULT 0, state TEXT NOT NULL DEFAULT 'new', CONSTRAINT picklist_or_po CHECK (picklist IS NOT NULL OR purchase_order IS NOT NULL) );