From 61f70c83ef7d67d5a1360bb5f31406186c6fa360 Mon Sep 17 00:00:00 2001 From: Yves P Date: Tue, 21 Jun 2016 21:09:47 +0200 Subject: [PATCH] The dump command should not require ORM table classes to add tables to the dump --- src/Command/Dump.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Dump.php b/src/Command/Dump.php index 936afd86..57384461 100644 --- a/src/Command/Dump.php +++ b/src/Command/Dump.php @@ -78,7 +78,7 @@ protected function execute(InputInterface $input, OutputInterface $output) $collection = $connection->schemaCollection(); $options = [ - 'require-table' => true, + 'require-table' => false, 'plugin' => $this->getPlugin($input) ]; $tables = $this->getTablesToBake($collection, $options);