mirror of
https://github.com/penpot/penpot.git
synced 2026-03-19 00:43:52 +00:00
6 lines
187 B
SQL
6 lines
187 B
SQL
ALTER TABLE profile ADD COLUMN is_active boolean NOT NULL DEFAULT false;
|
|
|
|
UPDATE profile SET is_active = true WHERE pending_email is null;
|
|
|
|
ALTER TABLE profile DROP COLUMN pending_email;
|