mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
Some checks failed
Build and push Docker image / .net docker build (push) Has been cancelled
.net checks / run .net tests (push) Has been cancelled
.net checks / dotnet-format (push) Has been cancelled
Build and push Rust service Docker images / rust docker build (push) Has been cancelled
rust checks / cargo fmt (push) Has been cancelled
11 lines
No EOL
365 B
SQL
11 lines
No EOL
365 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,
|
|
allowance_id int references premium_allowances (id) on delete set null,
|
|
status text,
|
|
next_renewal_at text,
|
|
unique (provider, provider_id)
|
|
) |