phonograph/interim-models/migrations/20241125232658_users.up.sql
2025-07-08 14:37:03 -07:00

6 lines
155 B
SQL

create table if not exists users (
id uuid not null primary key,
uid text unique not null,
email text not null
);
create index on users (uid);