From 3d2c731d61a8c5fc1fde963f5723c9ab2edb04ac Mon Sep 17 00:00:00 2001 From: dbs Date: Wed, 28 Oct 2009 03:00:02 +0000 Subject: [PATCH] Them thar comments needs them some semicolons to be valid SQL git-svn-id: svn://svn.open-ils.org/ILS/trunk@14644 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/sql/Pg/005.schema.actors.sql | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Open-ILS/src/sql/Pg/005.schema.actors.sql b/Open-ILS/src/sql/Pg/005.schema.actors.sql index 72d1869687..5f1bb3f300 100644 --- a/Open-ILS/src/sql/Pg/005.schema.actors.sql +++ b/Open-ILS/src/sql/Pg/005.schema.actors.sql @@ -389,49 +389,49 @@ CREATE TABLE actor.hours_of_operation ( COMMENT ON TABLE actor.hours_of_operation IS $$ When does this org_unit usually open and close? (Variations are expressed in the actor.org_unit_closed table.) -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_0_open IS $$ When does this org_unit open on Monday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_0_close IS $$ When does this org_unit close on Monday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_1_open IS $$ When does this org_unit open on Tuesday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_1_close IS $$ When does this org_unit close on Tuesday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_2_open IS $$ When does this org_unit open on Wednesday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_2_close IS $$ When does this org_unit close on Wednesday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_3_open IS $$ When does this org_unit open on Thursday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_3_close IS $$ When does this org_unit close on Thursday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_4_open IS $$ When does this org_unit open on Friday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_4_close IS $$ When does this org_unit close on Friday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_5_open IS $$ When does this org_unit open on Saturday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_5_close IS $$ When does this org_unit close on Saturday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_6_open IS $$ When does this org_unit open on Sunday? -$$ +$$; COMMENT ON COLUMN actor.hours_of_operation.dow_6_close IS $$ When does this org_unit close on Sunday? -$$ +$$; CREATE TABLE actor.org_unit_closed ( id SERIAL PRIMARY KEY, -- 2.43.2