Essentially, I am having the same issue as this guy, minus the table prefix. Because I have no table prefix, his fix does not work. http://forums.laravel.com/viewtopic.php?i
Easiest way is to disable foreign key checks:
DB::statement('set foreign_key_checks=0'); Schema::table( ... ); DB::statement('set foreign_key_checks=1');