phonograph/phono-models/migrations/20251212200434_invitations.up.sql

7 lines
276 B
MySQL
Raw Permalink Normal View History

2025-12-16 09:59:30 -08:00
-- The rel_invitations table has never been used and may be assumed to be empty.
drop table if exists rel_invitations;
alter table users add constraint email_lower check (email = lower(email));
alter table users alter column uid drop not null;
create index on users (email);