When I try php artisan queue:table
It gave me the following error
[InvalidArgumentException]
A CreateJobsTable migration already exists.
It is because I have already the migration named CreateJobsTable
for other purpose. I cannot rename this table and migration . Is there any way to rename the migration to CreateJobsQueueTable
or some thing relevant?
can we rename the jobs table that artisan creates with 'queue:table'?