Update tambah tombol Penyesuaian perubahan AKB Perubahan

This commit is contained in:
Pusdatin BPKD Jkt
2023-11-10 09:53:59 +07:00
parent 7810ed5495
commit 6dfb23e282
7 changed files with 173 additions and 8 deletions
@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMstSisaSalurTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('mst_sisa_salur', function (Blueprint $table) {
$table->id();
$table->string("tahun",4);
$table->string("kode_rekening",50);
$table->decimal("jumlah", 19,2);
$table->string("dokumen",100)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('mst_dau_rinci');
}
}