Answers for "how to delete table laravel"

PHP
1

php artisan drop table

php artisan make:migration drop_name_table
Posted by: Guest on February-22-2021
1

how delete the table in laravel in the commend

php artisan migrate:reset
Posted by: Guest on April-10-2021
0

laravel drop table column

Update Table

migrate:fresh          Drop all tables and re-run all migrations
migrate:install        Create the migration repository
migrate:refresh        Reset and re-run all migrations
migrate:reset          Rollback all database migrations
migrate:rollback       Rollback the last database migration
migrate:status         Show the status of each migration

for specific table
php artisan migrate:refresh --path=/database/migrations/table_name.php
Posted by: Guest on May-06-2022

Code answers related to "how to delete table laravel"

Browse Popular Code Answers by Language