Skip to content

Instantly share code, notes, and snippets.

@krisanalfa
Created October 10, 2016 13:28
Show Gist options
  • Save krisanalfa/5f458b610c960707d23687dfa979cf20 to your computer and use it in GitHub Desktop.
Save krisanalfa/5f458b610c960707d23687dfa979cf20 to your computer and use it in GitHub Desktop.
Laravel Tinker Drop All Table
<?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