update
This commit is contained in:
@@ -42,6 +42,7 @@ class CreateBelanjaRealisasiTable extends Migration
|
||||
$table->string("sub_jenis_dana",50);
|
||||
$table->uuid('realisasi_by')->nullable();
|
||||
$table->uuid('created_by')->nullable();
|
||||
$table->integer('id_sps')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateMstJenisDanaTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('mst_jenis_dana', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name', 50);
|
||||
$table->enum('grup',["DBH","DAK"])->default("DBH");
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('mst_jenis_dana');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user