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