Skip to content

Commit

Permalink
remove lenght when use boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
achmadhadikurnia committed Apr 3, 2024
1 parent b0868f0 commit 18abe46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function up(): void
$table->string('satuan_kerja_induk_nama')->nullable();
$table->string('satuan_kerja_kerja_id', 42)->nullable()->index('1_satuan_kerja_kerja_id');
$table->string('satuan_kerja_kerja_nama')->nullable();
$table->boolean('is_valid_nik', 1)->nullable()->index('is_valid_nik');
$table->boolean('is_valid_nik')->nullable()->index('is_valid_nik');
$table->timestamps();
$table->softDeletes();
});
Expand Down

0 comments on commit 18abe46

Please sign in to comment.