Update dan Bugs Fix

This commit is contained in:
Pusdatin BPKD Jkt
2022-09-08 15:44:36 +07:00
parent d2b925ff83
commit d1b21c5b17
12 changed files with 52 additions and 8 deletions
@@ -15,6 +15,7 @@ class CreateMstJenisbelanjaTable extends Migration
{
Schema::create('mst_jenis_belanja', function (Blueprint $table) {
$table->id();
$table->string('kode', 20);
$table->string('name', 300);
$table->string('description');
$table->timestamps();
@@ -15,6 +15,7 @@ class CreateMstSubJenisBelanjaTable extends Migration
{
Schema::create('mst_sub_jenis_belanja', function (Blueprint $table) {
$table->id();
$table->string('kode', 20);
$table->integer('id_jenis_belanja');
$table->string('name',300);
$table->string('description');