mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
10 lines
No EOL
288 B
SQL
10 lines
No EOL
288 B
SQL
create table premium_subscriptions (
|
|
id serial primary key,
|
|
provider text not null,
|
|
provider_id text not null,
|
|
email text not null,
|
|
system_id int references systems(id) on delete set null,
|
|
status text,
|
|
next_renewal_at text,
|
|
unique (provider, provider_id)
|
|
) |