blob: 3d82c7f8e1d8ba35d844df758f7f6c3029718875 (
plain)
1
2
3
4
5
6
7
8
9
|
create extension if not exists citext;
create table account (
provider_id text not null,
provider_user_id text not null,
email citext not null,
ap_id text not null references profile(ap_id) on delete cascade,
primary key (provider_id, provider_user_id)
)
|