Skip to content

Commit

Permalink
Remove unnecessary param
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphjsmit committed Jan 14, 2023
1 parent 0ea419e commit d5a7aeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ protected function defineDatabaseMigrationsAfterDatabaseRefreshed()
Schema::create('enum_casts', function (Blueprint $table) {
$table->increments('id');
$table->string('string_status', 100)->nullable();
$table->json('string_status_array', 100)->nullable();
$table->json('string_status_array')->nullable();
$table->integer('integer_status')->nullable();
$table->json('integer_status_array')->nullable();
$table->string('arrayable_status')->nullable();
Expand Down

0 comments on commit d5a7aeb

Please sign in to comment.