Files
project-manager/migrations/002_add_email_verification_to_users.sql
T

4 lines
213 B
SQL
Raw Normal View History

-- Null means the email address has not been verified yet. New accounts start
-- unverified; a later stage will add the endpoint that sets this timestamp.
ALTER TABLE users ADD COLUMN email_verified_at TEXT NULL;