From 6460d2b1bd89f470a76f5c2c3bddd390fe430e0f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 11 Nov 2019 14:00:00 -0600 Subject: [PATCH] formatting --- src/Illuminate/Database/Schema/PostgresBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Database/Schema/PostgresBuilder.php b/src/Illuminate/Database/Schema/PostgresBuilder.php index 63cc4bf2c127..f6f5cf226e3b 100755 --- a/src/Illuminate/Database/Schema/PostgresBuilder.php +++ b/src/Illuminate/Database/Schema/PostgresBuilder.php @@ -30,7 +30,7 @@ public function dropAllTables() { $tables = []; - $excludedTables = $this->connection->getConfig('excluded_drop_tables') ?? ['spatial_ref_sys']; + $excludedTables = $this->connection->getConfig('dont_drop') ?? ['spatial_ref_sys']; foreach ($this->getAllTables() as $row) { $row = (array) $row;