Answers for "cant drop a table in msql laravel migration"

PHP
0

Laravel Drop All Tables & Migrate

php artisan migrate:fresh

php artisan migrate:fresh --seed
Posted by: Guest on May-04-2021
-2

laravel drop table migration

Schema::drop('users');

Schema::dropIfExists('users');
Posted by: Guest on April-27-2020
0

laravel db drop table

foreach(\DB::select('SHOW TABLES') as $table) {
    $all_table_names = get_object_vars($table);
    \Schema::drop($all_table_names[key($all_table_names)]);
}
Posted by: Guest on January-08-2022

Code answers related to "cant drop a table in msql laravel migration"

Browse Popular Code Answers by Language