added attribut uc plan

This commit is contained in:
Jagad R R
2025-06-18 19:15:53 +07:00
parent 7525909e9c
commit a7fd26d2e6
7 changed files with 153 additions and 72 deletions
@@ -0,0 +1,28 @@
<?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('form_up_country', function (Blueprint $table) {
$table->string('uc_plan')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('form_up_country', function (Blueprint $table) {
$table->dropColumn('uc_plan');
});
}
};