Skip to content

Commit

Permalink
Merge pull request #83 from MGatner/migration-login-attempts
Browse files Browse the repository at this point in the history
Fix table name in down()
  • Loading branch information
lonnieezell authored Aug 28, 2019
2 parents eba1ec7 + d2adbd3 commit d7b85f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public function down()
}

$this->forge->dropTable('users', true);
$this->forge->dropTable('auth_login_attempts', true);
$this->forge->dropTable('auth_logins', true);
$this->forge->dropTable('auth_tokens', true);
$this->forge->dropTable('auth_reset_attempts', true);
$this->forge->dropTable('auth_groups', true);
Expand Down

0 comments on commit d7b85f7

Please sign in to comment.