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/CalDAV/ResourceBooking/AbstractPrincipalBackend.php | |
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/CalDAV/ResourceBooking/AbstractPrincipalBackend.php')
-rw-r--r-- | apps/dav/lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php b/apps/dav/lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php index 135bbe5827e..dcd393b512e 100644 --- a/apps/dav/lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php +++ b/apps/dav/lib/CalDAV/ResourceBooking/AbstractPrincipalBackend.php @@ -68,7 +68,7 @@ abstract class AbstractPrincipalBackend implements BackendInterface { $this->groupManager = $groupManager; $this->logger = $logger; $this->principalPrefix = $principalPrefix; - $this->dbTableName = 'calendar_' . $dbPrefix . '_cache'; + $this->dbTableName = 'calendar_' . $dbPrefix; } /** |