Files
approagency/database/migrations/2025_08_01_223854_add_fcm_token.php
T
2025-09-10 15:28:46 +03:30

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