Skip to content

Commit

Permalink
Merge pull request #3117 from uselagoon/fix-ecdsa-db-migration
Browse files Browse the repository at this point in the history
Fix `add_ecdsa_ssh_key_types` migration
  • Loading branch information
tobybellwood authored Apr 19, 2022
2 parents 4eb5824 + f289641 commit 011d920
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 011d920

Please sign in to comment.