Clean up another minor typo (not referenced anywhere, apparently)
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 13 Apr 2009 15:52:01 +0000 (15:52 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 13 Apr 2009 15:52:01 +0000 (15:52 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@12851 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/090.schema.action.sql
Open-ILS/src/sql/Pg/1.4-2.0-upgrade-db.sql

index bc43428..3d029ce 100644 (file)
@@ -209,7 +209,7 @@ CREATE OR REPLACE VIEW action.open_circulation AS
          ORDER BY due_date;
                
 
-CREATE OR REPLACE VIEW action.billable_cirulations AS
+CREATE OR REPLACE VIEW action.billable_circulations AS
        SELECT  *
          FROM  action.circulation
          WHERE xact_finish IS NULL;
index f62b04e..838ade7 100644 (file)
@@ -25,4 +25,6 @@ ALTER TABLE asset.copy_tranparency_map RENAME COLUMN tansparency TO transparency
 ALTER TABLE asset.copy_tranparency_map RENAME TO copy_transparency_map;
 CREATE INDEX cp_tr_cp_idx ON asset.copy_transparency_map (transparency);
 
+ALTER VIEW action.billable_cirulations RENAME TO billable_circulations;
+
 COMMIT;