Update Module Pendapatan Tamsil dan TPG

This commit is contained in:
izuddin
2025-10-08 09:37:51 +07:00
parent ae68f252e1
commit d462dff0e3
7 changed files with 59 additions and 4 deletions
@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAkunTamsilTpgTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('akun_tamsil_tpg', function (Blueprint $table) {
$table->id();
$table->string("kode_akun", 30);
$table->string("nama_akun", 100);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('akun_tamsil_tpg');
}
}