Skip to content

Commit bc82d67

Browse files
committed
--complete is deprecated
1 parent 75ad28a commit bc82d67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"clean-directories": "bin/console clean-directories cache log",
6565
"database:create": "bin/console dbal:database:create --if-not-exists",
6666
"database:drop": "bin/console dbal:database:drop --if-exists --force",
67-
"database:schema:update": "bin/console orm:schema-tool:update --complete --force --dump-sql",
67+
"database:schema:update": "bin/console orm:schema-tool:update --force --dump-sql",
6868
"database:schema:validate": "bin/console orm:validate-schema",
6969
"fix:cs": "mkdir -p build && vendor/bin/php-cs-fixer fix --cache-file=build/phpcs.cache",
7070
"setup:dev": [

tests/PhpServerExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private function initialize(): void
5555

5656
passthru($consolePath.' dbal:database:drop --if-exists --force --env=phpunit');
5757
passthru($consolePath.' dbal:database:create --env=phpunit');
58-
passthru($consolePath.' orm:schema-tool:update --complete --dump-sql --force --env=phpunit');
58+
passthru($consolePath.' orm:schema-tool:update --dump-sql --force --env=phpunit');
5959

6060
passthru($consolePath.' clean-directories cache log --env=phpunit');
6161

0 commit comments

Comments
 (0)