change
public function down()
{
Schema::drop('tasks');
}
to
public function down()
{
Schema::table('tasks');
}
Try not doing --create then --table="name" just do --create="tablename"
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community