관리-도구
편집 파일: 2022_11_07_190749_create_deliveryman_notifications_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateDeliverymanNotificationsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('deliveryman_notifications', function (Blueprint $table) { $table->id(); $table->bigInteger('delivery_man_id'); $table->bigInteger('order_id'); $table->string('description'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('deliveryman_notifications'); } }