add di function customer nota arcc

This commit is contained in:
Ain Izazi
2025-08-25 09:40:16 +08:00
committed by Afiq Hamzah
parent f5874b956d
commit 3b44cec5a2
4 changed files with 131 additions and 2 deletions
@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddNotaArccToCustomerTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('customer', function (Blueprint $table) {
$table->string('nota_arcc')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('customer', function (Blueprint $table) {
$table->dropColumn('nota_arcc');
});
}
}