phonograph/migrations/20241125232658_users.up.sql

7 lines
155 B
MySQL
Raw Normal View History

2025-05-26 22:08:21 -07:00
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);