From: phasefx Date: Thu, 19 Jun 2008 17:03:51 +0000 (+0000) Subject: missing comma X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6d05210c0e758f6d27d0ae5bfc034f8cc5d0eddb;p=Evergreen.git missing comma git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2@9877 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/extend-reporter.sql b/Open-ILS/src/sql/Pg/extend-reporter.sql index 90fcd2d032..8f68cd49fb 100644 --- a/Open-ILS/src/sql/Pg/extend-reporter.sql +++ b/Open-ILS/src/sql/Pg/extend-reporter.sql @@ -21,7 +21,7 @@ BEGIN; CREATE SCHEMA extend_reporter; CREATE TABLE extend_reporter.legcay_circ_count ( - id BIGSERIAL PRIMARY KEY REFERENCES asset.copy (id) + id BIGSERIAL PRIMARY KEY REFERENCES asset.copy (id), circ_count INT NOT NULL DEFAULT 0 );