Update develop realisasi belanja
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateDbhBelanjaRealisasiTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('dbh_belanja_realisasi', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->string("tahun_anggaran",4);
|
||||
$table->string("jenis_belanja",50);
|
||||
$table->string("sub_jenis_belanja",50);
|
||||
$table->string("kode_program",50);
|
||||
$table->string("nama_program",150);
|
||||
$table->string("kode_skpd",50);
|
||||
$table->string("nama_skpd",150);
|
||||
$table->string("kode_kegiatan",50);
|
||||
$table->string("nama_kegiatan",150);
|
||||
$table->string("kode_sub_kegiatan",50);
|
||||
$table->string("nama_sub_kegiatan",150);
|
||||
$table->string("kode_rsk",50);
|
||||
$table->text("nama_rsk");
|
||||
$table->string("kode_rekening",50);
|
||||
$table->string("nama_rekening",150);
|
||||
$table->decimal('jumlah_anggaran', 19, 2);
|
||||
$table->tinyInteger('volume_satuan');
|
||||
$table->string('unit_satuan',30);
|
||||
$table->tinyInteger('volume_satuan_realisasi')->nullable();
|
||||
$table->string('unit_satuan_realisasi',30)->nullable();
|
||||
$table->uuid('realisasi_by')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('dbh_belanja_realisasi');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user