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