Update Rekening Tamsil dan TPG
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user