🐛 Add missing sql sentence on migration 0009.

This commit is contained in:
Andrey Antukh 2020-05-25 17:16:26 +02:00
parent 7bda554889
commit 5268a7663f

View File

@ -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;