This commit is contained in:
Pusdatin BPKD Jkt
2022-07-11 16:26:39 +07:00
parent b2c962f2b5
commit a4de789b93
22 changed files with 731 additions and 236 deletions
@@ -1,34 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateJadwalSalurDetailTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('jadwal_salur_detail', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('id_jadwal_salur', 50);
$table->tinyInteger('bulan');
$table->decimal('jumlah', 19, 2);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('jadwal_salur_detail');
}
}
@@ -1,35 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePendapatanJadwalSalurTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pendapatan_jadwal_salur', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('tahun', 4);
$table->decimal('perpres', 19, 2);
$table->decimal('apbd', 19, 2);
$table->decimal('jumlah', 19, 2);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pendapatan_jadwal_salur');
}
}
@@ -1,34 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePendapatanJadwalSalurDetailTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('pendapatan_jadwal_salur_detail', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('id_pendapatan_jadwal_salur', 50);
$table->tinyInteger('bulan');
$table->decimal('jumlah', 19, 2);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('pendapatan_jadwal_salur_detail');
}
}
@@ -1,43 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateJadwalSalurDetailRinciTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('jadwal_salur_detail_rinci', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('id_jadwal_salur_detail', 50);
$table->string('tahun', 4);
$table->string('nama_akun', 150);
$table->decimal('perpres', 19, 2);
$table->decimal('apbd', 19, 2);
$table->string('pmk', 50);
$table->string('pmk_pasal', 30);
$table->tinyInteger('pmk_I');
$table->tinyInteger('pmk_II');
$table->tinyInteger('pmk_III');
$table->tinyInteger('pmk_IV');
$table->decimal('jumlah', 19, 2);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('jadwal_salur_detail_rinci');
}
}
@@ -1,34 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateJadwalSalurDetailRinciDetailTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('jadwal_salur_detail_rinci_detail', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('id_jadwal_salur_detail_rinci', 50);
$table->tinyInteger('bulan');
$table->decimal('jumlah', 19, 2);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('jadwal_salur_detail_rinci_detail');
}
}
@@ -0,0 +1,42 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateDbhPendapatanRealisasiTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('dbh_pendapatan_realisasi', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->integer('id_sps')->nullable();
$table->text('simtrad4_uraian');
$table->decimal('simtrad4_kotor', 19, 2);
$table->decimal('simtrad4_potongan', 19, 2);
$table->decimal('simtrad4_bersih', 19, 2);
$table->string('simtrad4_sp2d_bun',50);
$table->date('rkud_tgl')->nullable();
$table->string('rkud_no_sts',20)->nullable();
$table->string('rkud_kode_akun',50)->nullable();
$table->string('rkud_nama_akun',255)->nullable();
$table->string('rkud_jumlah',50)->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('dbh_pendapatan_realisasi');
}
}