diff --git a/backend/resources/migrations/0009-drop-profile-email-table.sql b/backend/resources/migrations/0009-drop-profile-email-table.sql index 467235e3b8..1a62372abe 100644 --- a/backend/resources/migrations/0009-drop-profile-email-table.sql +++ b/backend/resources/migrations/0009-drop-profile-email-table.sql @@ -1,3 +1,6 @@ DROP INDEX profile_email__profile_id__idx; DROP INDEX profile_email__email__idx; DROP TABLE profile_email; + +ALTER TABLE profile + ADD COLUMN pending_email text NULL;