Skip to content

Commit

Permalink
Merge pull request #362 from utopia-php/feat-date-preserve
Browse files Browse the repository at this point in the history
  • Loading branch information
Meldiron authored Nov 23, 2023
2 parents 220fcbf + 0d01c29 commit c0a4541
Show file tree
Hide file tree
Showing 9 changed files with 263 additions and 137 deletions.
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

0 comments on commit c0a4541

Please sign in to comment.