From: miker Date: Tue, 8 Aug 2006 15:26:21 +0000 (+0000) Subject: actually use the new tables ... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=cf23e0bd29bde093b648ade1c35f26552fd1ebc2;p=evergreen%2Fpines.git actually use the new tables ... git-svn-id: svn://svn.open-ils.org/ILS/trunk@5366 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm b/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm index f57927d3fe..d0e8d2a8c2 100644 --- a/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm +++ b/Open-ILS/src/perlmods/OpenILS/Utils/OfflineStore.pm @@ -64,7 +64,7 @@ CREATE INDEX IF NOT EXISTS session_creation ON session (create_time); SQL } -__PACKAGE__->table('session'); +__PACKAGE__->table('offline.session'); __PACKAGE__->columns( Essential => qw/key org description creator create_time in_process start_time end_time num_complete/); __PACKAGE__->has_many(scripts => 'OpenILS::Utils::OfflineStore::Script'); @@ -94,7 +94,7 @@ CREATE INDEX IF NOT EXISTS script_session ON script (session); SQL } -__PACKAGE__->table('script'); +__PACKAGE__->table('offline.script'); __PACKAGE__->columns( Essential => qw/id session requestor create_time workstation logfile time_delta count/); __PACKAGE__->has_a(session => 'OpenILS::Utils::OfflineStore::Session');