File: /www/wwwroot//www.ankua.asia/database/migrations/2022_12_22_022326_create_notifications_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.
*
* @return void
*/
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->uuid('id')->primary()->comment('UUID');
$table->string('type')->comment('类型');
$table->morphs('notifiable');
$table->text('data')->comment('通知数据');
$table->timestamp('read_at')->nullable()->comment('打开时间');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('notifications');
}
};