관리-도구
편집 파일: update.stub
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class DummyClass extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('DummyTable', function (Blueprint $table) { // }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('DummyTable', function (Blueprint $table) { // }); } }