Skip to content

Commit

Permalink
Fix add_ecdsa_ssh_key_types migration
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketeerbkw authored Apr 19, 2022
1 parent 4eb5824 commit f289641
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ CREATE OR REPLACE PROCEDURE
AND column_name = 'key_type';

IF (
column_type_argument_type = "enum('ssh-rsa', 'ssh-ed25519')"
column_type_argument_type = "enum('ssh-rsa','ssh-ed25519')"
) THEN
ALTER TABLE ssh_key
MODIFY type ENUM('ssh-rsa', 'ssh-ed25519','ecdsa-sha2-nistp256','ecdsa-sha2-nistp384','ecdsa-sha2-nistp521');
Expand Down

0 comments on commit f289641

Please sign in to comment.