0

when you use comand by example:

php artisan make:migration create_tasks_table --create=tasks

it creates a table file and dependency link inside of file

\vendor\composer\autoload_classmap.php

How I can do something like?

php artisan remove:table:file create_Task_table

1 Answers1

0

No such command exists in artisan console. However, you can either make one such command or just delete the migration and execute the following command in the console.

composer dump-autoload
Huzaib Shafi
  • 1,153
  • 9
  • 24