0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00

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