Update buat bast

This commit is contained in:
Pusdatin BPKD Jkt
2022-08-15 16:06:28 +07:00
parent 1b69790606
commit be57454faa
4 changed files with 182 additions and 0 deletions
@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateBelanjaRealisasiBastTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('belanja_realisasi_bast', function (Blueprint $table) {
$table->id();
$table->integer("id_kontrak");
$table->string("nomor_bast",50);
$table->date("tgl_bast",50);
$table->decimal('nominal_bast', 19, 2);
$table->string("file_bast",100)->nullable();
$table->uuid("created_by");
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('belanja_realisasi_bast');
}
}