diff options
| author | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
|---|---|---|
| committer | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
| commit | 4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch) | |
| tree | 5c07151ae61276d334e88f6309c30d439a85c12e /db/migrations/1.318_step_00353_cache.php | |
| parent | da0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff) | |
| parent | 97a188592c679890a25c37ab78463add76a52ff7 (diff) | |
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'db/migrations/1.318_step_00353_cache.php')
| -rw-r--r-- | db/migrations/1.318_step_00353_cache.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/db/migrations/1.318_step_00353_cache.php b/db/migrations/1.318_step_00353_cache.php index 901db60..5959945 100644 --- a/db/migrations/1.318_step_00353_cache.php +++ b/db/migrations/1.318_step_00353_cache.php @@ -1,5 +1,10 @@ <?php +use Studip\Cache\DbCache; +use Studip\Cache\FileCache; +use Studip\Cache\MemcachedCache; +use Studip\Cache\RedisCache; + class Step00353Cache extends Migration { public function description() @@ -20,10 +25,10 @@ class Step00353Cache extends Migration ) ENGINE=InnoDB ROW_FORMAT=DYNAMIC"); $types = [ - 'StudipDbCache', - 'StudipFileCache', - 'StudipMemcachedCache', - 'StudipRedisCache' + DbCache::class, + FileCache::class, + MemcachedCache::class, + RedisCache::class, ]; // Insert pre-defined cache types in to database |
