CreateUsersTable::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::drop('users');
    }

Usage Example

示例#1
0
 /**
  * Reverse the migrations
  */
 public function down()
 {
     $this->createShipsTable->down();
     $this->createTypesTable->down();
     $this->createUsersTable->down();
     $this->createCompaniesTable->down();
     echo "Database tables destroyed.\n\n";
 }
All Usage Examples Of CreateUsersTable::down
CreateUsersTable