laravellaravel-5laravel-artisanmigratelaravel-migrations

I can not migrate tables again


I deleted all tables in database, but my error is :

table.questions exists

so I can not migrate them, does it depend on something else as well?


Solution

  • I found it , I had a middleware in boot for question table and added this:

       if(\Schema::hasTable('questions')) {
           ....
         }