Update dan Bugs Fix
This commit is contained in:
@@ -16,8 +16,11 @@ class CreateBelanjaRealisasiTable extends Migration
|
||||
Schema::create('belanja_realisasi', function (Blueprint $table) {
|
||||
$table->uuid('id')->primary();
|
||||
$table->string("tahun_anggaran",4);
|
||||
$table->enum("jenis_dana",["DBH","DAK"]);
|
||||
$table->tinyInteger("sub_jenis_dana");
|
||||
$table->tinyInteger("jenis_belanja");
|
||||
$table->tinyInteger("sub_jenis_belanja");
|
||||
$table->integer('id_sps')->nullable();
|
||||
$table->string("kode_program",50);
|
||||
$table->string("nama_program",400);
|
||||
$table->string("kode_skpd",50);
|
||||
@@ -33,16 +36,12 @@ class CreateBelanjaRealisasiTable extends Migration
|
||||
$table->decimal('jumlah_anggaran', 19, 2);
|
||||
$table->integer('volume_satuan')->nullable();
|
||||
$table->string('unit_satuan',30)->nullable();
|
||||
$table->smallInteger('jml_rencana_kontrak')->default(0);
|
||||
$table->decimal('jumlah_realisasi', 19, 2)->nullable();
|
||||
$table->integer('volume_satuan_realisasi')->nullable();
|
||||
$table->string('unit_satuan_realisasi',30)->nullable();
|
||||
$table->string("no_sp2d",30)->nullable();
|
||||
$table->smallInteger('jml_rencana_kontrak')->default(0);
|
||||
$table->string("jenis_dana",50);
|
||||
$table->string("sub_jenis_dana",50);
|
||||
$table->uuid('realisasi_by')->nullable();
|
||||
$table->uuid('created_by')->nullable();
|
||||
$table->integer('id_sps')->nullable();
|
||||
$table->tinyInteger('f_view_sbpk')->default(0);
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user