mirror of
https://github.com/appwrite/appwrite
synced 2026-04-21 13:37:16 +00:00
updated
This commit is contained in:
parent
5df65d5417
commit
e4b8469113
1 changed files with 6 additions and 1 deletions
|
|
@ -29,7 +29,12 @@ class XList extends Action
|
|||
|
||||
protected function getDatabaseTypeQueryFilters(): array
|
||||
{
|
||||
return [Query::equal('type', [$this->getDatabaseType()])];
|
||||
return [
|
||||
Query::or([
|
||||
Query::equal('type', [DATABASE_TYPE_TABLESDB, DATABASE_TYPE_LEGACY]),
|
||||
Query::isNull('type'),
|
||||
]),
|
||||
];
|
||||
}
|
||||
|
||||
public function __construct()
|
||||
|
|
|
|||
Loading…
Reference in a new issue