Skip to content

Commit ea63d70

Browse files
authored
fix: fix credentialId migration type (#396)
1 parent 72fd7ad commit ea63d70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2019_03_29_163611_add_webauthn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function up()
1818
$table->bigInteger('user_id')->unsigned();
1919

2020
$table->string('name')->default('key');
21-
$table->string('credentialId', 255);
21+
$table->mediumText('credentialId');
2222
$table->string('type', 255);
2323
$table->text('transports');
2424
$table->string('attestationType', 255);

0 commit comments

Comments
 (0)