14 lines
470 B
PL/PgSQL
14 lines
470 B
PL/PgSQL
-- Allow MiniMax H3 rules in the durable billing catalog. Runtime provider
|
|
-- credentials already use the generic platform_runtime_settings table.
|
|
|
|
begin;
|
|
|
|
alter table public.billing_price_rules
|
|
drop constraint if exists billing_price_rules_provider_check;
|
|
|
|
alter table public.billing_price_rules
|
|
add constraint billing_price_rules_provider_check
|
|
check (provider in ('volcengine-visual', 'evolink', 'seedance', 'seedream', 'bailian', 'minimax', 'mock'));
|
|
|
|
commit;
|