관리-도구
편집 파일: 2022_10_27_145604_create_emergency_contacts_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateEmergencyContactsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('emergency_contacts', function (Blueprint $table) { $table->id(); $table->bigInteger('user_id'); $table->string('name'); $table->string('phone', 25); $table->boolean('status'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('emergency_contacts'); } }