update controler kobank

This commit is contained in:
KhatamNugraha
2024-07-11 11:25:00 +07:00
parent f2792bb543
commit 100cb2e6c4
8 changed files with 307 additions and 269 deletions

View File

@ -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('fasilitas', function (Blueprint $table) {
$table->string('nomor_rekening')->nullable(false)->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('fasilitas', function (Blueprint $table) {
$table->string('nomor_rekening')->nullable()->change();
});
}
};