コード例 #1
0
ファイル: CreateTables.php プロジェクト: aodkrisda/notes-api
 /**
  * Run the migrations
  *
  * @return void
  */
 function run()
 {
     $usersTable = new CreateUsersTable();
     $notesTable = new CreateNotesTable();
     $notesTable->drop();
     $usersTable->drop();
     $usersTable->create();
     $notesTable->create();
 }