Im trying to roll back my migrations.
My migrations file uses foreign keys like so
$table->foreign(\'user_one\')->references(\'id\')->on(\'u
pm_convo_replys has a foreign key that references pm_convo, thus you cannot delete pm_convo first without violating a foreign key constraint in pm_convo_replys.
To delete both you need to delete pm_convo_replys first.
public function down()
{
Schema::drop('pm_convo_replys');
Schema::drop('pm_convo');
}