Files
approagency/database/migrations/2025_08_01_223854_add_fcm_token.php
T
2026-06-10 08:30:03 +00:00

27 lines
503 B
PHP
Executable File

<?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('user_package_name', function (Blueprint $table) {
$table->string('fcm_token')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};