Skip to content

Commit

Permalink
fix: fix credentialId migration type (#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Aug 20, 2022
1 parent 72fd7ad commit ea63d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/2019_03_29_163611_add_webauthn.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function up()
$table->bigInteger('user_id')->unsigned();

$table->string('name')->default('key');
$table->string('credentialId', 255);
$table->mediumText('credentialId');
$table->string('type', 255);
$table->text('transports');
$table->string('attestationType', 255);
Expand Down

0 comments on commit ea63d70

Please sign in to comment.