Fixes id length limitation #38

This commit is contained in:
Italo Israel Baeza Cabrera
2023-03-09 14:39:27 -03:00
parent 42558d9787
commit cd40888eb9
2 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ return new class extends Migration {
*/
protected static function defaultBlueprint(Blueprint $table): void
{
$table->string('id')->primary();
$table->string('id', 510)->primary();
$table->morphs('authenticatable', 'webauthn_user_index');