Inheritance: extends Illuminate\Database\Migrations\Migration
Example #1
0
 /**
  * Run the migrations
  *
  * @return void
  */
 function run()
 {
     $usersTable = new CreateUsersTable();
     $notesTable = new CreateNotesTable();
     $notesTable->drop();
     $usersTable->drop();
     $usersTable->create();
     $notesTable->create();
 }