관리-도구
편집 파일: 2023_08_20_230911_create_notification_seens_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNotificationSeensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('notification_seens', function (Blueprint $table) { $table->id(); $table->integer('seller_id')->nullable(); $table->integer('user_id')->nullable(); $table->integer('notification_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notification_seens'); } }