Update buat bast
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user