Skip to content
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
f0ssel committed Oct 5, 2022
commit cace329c41be0dbebda2cea04437fded9f37f040
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CREATE TYPE old_login_type AS ENUM (
'password',
'github',
'oidc'
'oidc'
);
ALTER TABLE api_keys ALTER COLUMN login_type TYPE old_login_type USING (login_type::text::old_login_type);
DROP TYPE login_type;
Expand Down