Skip to content

Commit

Permalink
Update 00_00_00_000000_create_user_settings_table.php
Browse files Browse the repository at this point in the history
  • Loading branch information
DonCamillo11 authored Aug 13, 2024
1 parent 4c40d3a commit c84c3a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function up(): void
// $table->uuidMorphs('settable');
$table->numericMorphs('settable');

$table->string('value')->nullable();
$table->string('value', 500)->nullable();
$table->boolean('is_enabled')->default(true);

$table->timestamps();
Expand All @@ -38,4 +38,4 @@ public function down(): void
{
Schema::dropIfExists('user_settings');
}
}
}

0 comments on commit c84c3a3

Please sign in to comment.