From 5268a7663f3b4c6bc6853f9cc51408cf60fe0ea8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 25 May 2020 17:16:26 +0200 Subject: [PATCH] :bug: Add missing sql sentence on migration 0009. --- backend/resources/migrations/0009-drop-profile-email-table.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/resources/migrations/0009-drop-profile-email-table.sql b/backend/resources/migrations/0009-drop-profile-email-table.sql index 467235e3b..1a62372ab 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;