update temuan sit 11092023

This commit is contained in:
KhatamNugraha
2023-09-11 14:06:17 +07:00
parent 9944dac2e4
commit d7adee753c
6 changed files with 123 additions and 57 deletions

View File

@ -0,0 +1,35 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('fasilitas', function (Blueprint $table) {
$table->string('cabang')->nullable()->change();
$table->string('periode')->nullable()->change();
$table->string('jenis_rekening')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('fasilitas', function (Blueprint $table) {
});
}
};