Maintenance Kontrak
This commit is contained in:
@@ -15,7 +15,7 @@ class CreateBelanjaRealisasiDetailTable extends Migration
|
||||
{
|
||||
Schema::create('belanja_realisasi_detail', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->uuid("dbh_belanja_realisasi_id");
|
||||
$table->uuid("belanja_realisasi_id");
|
||||
$table->decimal('jumlah_realisasi', 19, 2);
|
||||
$table->tinyInteger('volume_satuan_realisasi')->nullable();
|
||||
$table->string('unit_satuan_realisasi',30)->nullable();
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateBelanjaRealisasiKontrakTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('belanja_realisasi_kontrak', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->uuid("belanja_realisasi_id");
|
||||
$table->string("nomor_kontrak",50);
|
||||
$table->date("tgl_kontrak",50);
|
||||
$table->decimal('nominal_kontrak', 19, 2);
|
||||
$table->string("file_kontrak",100)->nullable();
|
||||
$table->uuid("created_by");
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('belanja_realisasi_kontrak');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user