Tables: Renaming / Dropping Tables

Schema::rename($from, $to);
Schema::drop('users');

Schema::dropIfExists('users');

Renaming Tables With Foreign Keys

Before renaming a table, you should verify that any foreign key constraints on the table have an explicit name in your migration files instead of letting Laravel assign a convention based name.

Tables: Renaming / Dropping Tables — Structure map

Clickable & Draggable!

Tables: Renaming / Dropping Tables — Related pages: