Closed asbiin closed 2 years ago
Changed credentialId migration type to mediumText.
credentialId
mediumText
If you already have created the webauthn_keys you can upgrade the column with a new migration:
webauthn_keys
Schema::table('webauthn_keys', function (Blueprint $table) { $table->mediumText('credentialId')->change(); });
Kudos, SonarCloud Quality Gate passed!
0 Bugs 0 Vulnerabilities 0 Security Hotspots 0 Code Smells
No Coverage information No Duplication information
:tada: This PR is included in version 3.2.1 :tada:
The release is available on:
3.2.1
Your semantic-release bot :package::rocket:
Changed
credentialId
migration type tomediumText
.If you already have created the
webauthn_keys
you can upgrade the column with a new migration: