mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-10 04:09:37 +00:00
9 lines
368 B
MySQL
9 lines
368 B
MySQL
|
create table if not exists billing_preferences (
|
||
|
id serial primary key,
|
||
|
created_at timestamp without time zone not null default now(),
|
||
|
user_id integer not null references users(id) on delete cascade,
|
||
|
max_monthly_llm_usage_spending_in_cents integer not null
|
||
|
);
|
||
|
|
||
|
create unique index "uix_billing_preferences_on_user_id" on billing_preferences (user_id);
|