Update Rekening Tamsil dan TPG

This commit is contained in:
izuddin
2025-08-07 10:30:44 +07:00
parent a0c2774e81
commit cb273e1256
7 changed files with 255 additions and 70 deletions
@@ -0,0 +1,40 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePendapatanRealisasiStsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pendapatan_realisasi_sts', function (Blueprint $table) {
$table->id();
$table->uuid('id_pendapatan_realisasi');
$table->date('rkud_tgl');
$table->string('rkud_no_sts',50);
$table->string('rkud_kode_akun',50);
$table->string('rkud_nama_akun',255);
$table->decimal('rkud_jumlah',19,2);
$table->decimal('sisa_sts',19,2)->default(0);
$table->string('file_sts',50);
$table->uuid('created_by')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pendapatan_realisasi_sts');
}
}