This commit is contained in:
Pusdatin BPKD Jkt
2022-09-29 14:45:14 +07:00
parent 1447dfd7d9
commit 019f6be7f6
6 changed files with 180 additions and 9 deletions
@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateBelanjaRealisasiSpdTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('belanja_realisasi_spd', function (Blueprint $table) {
$table->id();
$table->integer('id_rsk');
$table->string('no_spd', 50);
$table->date('tgl');
$table->decimal('jumlah', 19, 2);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('belanja_realisasi_spd');
}
}