Update upload data dak

This commit is contained in:
Pusdatin BPKD Jkt
2022-08-29 13:53:59 +07:00
parent 779f446924
commit 34f95b22ef
8 changed files with 313 additions and 41 deletions
@@ -15,7 +15,7 @@ class CreateMstJenisbelanjaTable extends Migration
{
Schema::create('mst_jenis_belanja', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('name', 300);
$table->string('description');
$table->timestamps();
});
@@ -16,7 +16,7 @@ class CreateMstSubJenisBelanjaTable extends Migration
Schema::create('mst_sub_jenis_belanja', function (Blueprint $table) {
$table->id();
$table->integer('id_jenis_belanja');
$table->string('name');
$table->string('name',300);
$table->string('description');
$table->timestamps();
});