Increase id column length of webauthn credential - Fix #166

This commit is contained in:
Bubka 2023-03-10 15:54:58 +01:00
parent 0a8807d87a
commit ffdd82504a

View File

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