diff options
author | Joas Schilling <coding@schilljs.com> | 2018-07-12 11:55:19 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-07-12 11:55:19 +0200 |
commit | b7de6d7a24f76c91dffe1644c4b24e0a27b43c14 (patch) | |
tree | 6b59887a4544adc80c4d37cc9742fec1c311df81 /apps/dav/lib/BackgroundJob | |
parent | e3126fa091305a2325711d54d06a127283f27c56 (diff) | |
download | nextcloud-server-b7de6d7a24f76c91dffe1644c4b24e0a27b43c14.tar.gz nextcloud-server-b7de6d7a24f76c91dffe1644c4b24e0a27b43c14.zip |
Shorten resource table names to allow install on oracle again
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/lib/BackgroundJob')
-rw-r--r-- | apps/dav/lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php b/apps/dav/lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php index a01540a6292..c5f8f6586e9 100644 --- a/apps/dav/lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php +++ b/apps/dav/lib/BackgroundJob/UpdateCalendarResourcesRoomsBackgroundJob.php @@ -72,9 +72,9 @@ class UpdateCalendarResourcesRoomsBackgroundJob extends TimedJob { $this->roomManager = $roomManager; $this->db = $dbConnection; $this->calDavBackend = $calDavBackend; - $this->resourceDbTable = 'calendar_resources_cache'; + $this->resourceDbTable = 'calendar_resources'; $this->resourcePrincipalUri = 'principals/calendar-resources'; - $this->roomDbTable = 'calendar_rooms_cache'; + $this->roomDbTable = 'calendar_rooms'; $this->roomPrincipalUri = 'principals/calendar-rooms'; // run once an hour |