관리-도구
편집 파일: 2023_12_20_093304_update_contacts_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('contacts', function (Blueprint $table) { $table->dropColumn('first_name'); $table->dropColumn('last_name'); $table->dropColumn('email'); $table->dropColumn('username'); $table->dropColumn('company'); $table->dropColumn('address'); $table->dropColumn('birth_date'); $table->dropColumn('anniversary_date'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('contacts', function (Blueprint $table) { $table->string('first_name')->nullable(false)->change(); $table->string('last_name')->nullable(false)->change(); $table->string('email')->nullable(false)->change(); $table->string('username')->nullable(false)->change(); $table->string('company')->nullable(false)->change(); $table->string('address')->nullable(false)->change(); $table->string('birth_date')->nullable(false)->change(); $table->string('anniversary_date')->nullable(false)->change(); }); } };