mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
Merge branch 'feat-database-indexing-migration' of https://github.com/appwrite/appwrite into feat-database-indexing-migration
This commit is contained in:
commit
13ab43e72e
1 changed files with 2 additions and 2 deletions
|
|
@ -43,8 +43,8 @@ class V11 extends Migration
|
|||
|
||||
if (!is_null($cache)) {
|
||||
$cacheAdapter = new Cache(new RedisCache($this->cache));
|
||||
$this->dbInternal = new Database(new MariaDB($this->db), $cacheAdapter);
|
||||
$this->dbExternal = new Database(new MariaDB($this->db), $cacheAdapter);
|
||||
$this->dbInternal = new Database(new MariaDB($this->db), $cacheAdapter); // namespace is set on execution
|
||||
$this->dbExternal = new Database(new MariaDB($this->db), $cacheAdapter); // namespace is set on execution
|
||||
$this->dbConsole = new Database(new MariaDB($this->db), $cacheAdapter);
|
||||
$this->dbConsole->setNamespace('project_console_internal');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue