Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ services:
MONGO_INITDB_ROOT_PASSWORD: example

mysql:
image: mysql:8.0.31
image: mysql:8.0.33
container_name: utopia-mysql
networks:
- database
Expand Down
4 changes: 2 additions & 2 deletions src/Database/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,11 @@ abstract public function create(string $name): bool;
* Optionally check if collection exists in database
*
* @param string $database database name
* @param string $collection (optional) collection name
* @param string|null $collection (optional) collection name
*
* @return bool
*/
abstract public function exists(string $database, ?string $collection): bool;
abstract public function exists(string $database, ?string $collection = null): bool;

/**
* List Databases
Expand Down
Loading