Created
October 10, 2016 13:28
-
-
Save krisanalfa/5f458b610c960707d23687dfa979cf20 to your computer and use it in GitHub Desktop.
Laravel Tinker Drop All Table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$pdo = DB::getPdo(); | |
$tables = $pdo->query("SHOW FULL TABLES;")->fetchAll(); | |
$sql = 'SET FOREIGN_KEY_CHECKS=0;'; | |
foreach ($tables as $tableInfo) { | |
if('BASE TABLE' !== $tableInfo[1]) continue; | |
$sql .= 'DROP TABLE ' . $tableInfo[0] . ';'; | |
} | |
$sql .= 'SET FOREIGN_KEY_CHECKS=1;'; | |
$pdo->exec($sql); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment