Skip to content

Commit

Permalink
Don't try to drop Views when executing MySqlBuilder::dropAllTables() (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
j859823 authored and taylorotwell committed Jul 25, 2017
1 parent fddeb1a commit 57d0777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Schema/MySqlBuilder.php
Expand Up @@ -45,7 +45,7 @@ public function dropAllTables()
{
$this->disableForeignKeyConstraints();

foreach ($this->connection->select('SHOW TABLES') as $table) {
foreach ($this->connection->select('SHOW FULL TABLES WHERE table_type = \'BASE TABLE\'') as $table) {
$this->drop(get_object_vars($table)[key($table)]);
}

Expand Down

0 comments on commit 57d0777

Please sign in to comment.