mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-05-05 05:30:44 +08:00
20 lines
953 B
MySQL
20 lines
953 B
MySQL
|
|
-- Add intervals table for account stats pricing rules (mirrors channel_pricing_intervals).
|
||
|
|
CREATE TABLE IF NOT EXISTS channel_account_stats_pricing_intervals (
|
||
|
|
id BIGSERIAL PRIMARY KEY,
|
||
|
|
pricing_id BIGINT NOT NULL REFERENCES channel_account_stats_model_pricing(id) ON DELETE CASCADE,
|
||
|
|
min_tokens INT NOT NULL DEFAULT 0,
|
||
|
|
max_tokens INT,
|
||
|
|
tier_label VARCHAR(50),
|
||
|
|
input_price NUMERIC(20,12),
|
||
|
|
output_price NUMERIC(20,12),
|
||
|
|
cache_write_price NUMERIC(20,12),
|
||
|
|
cache_read_price NUMERIC(20,12),
|
||
|
|
per_request_price NUMERIC(20,12),
|
||
|
|
sort_order INT NOT NULL DEFAULT 0,
|
||
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE INDEX IF NOT EXISTS idx_account_stats_pricing_intervals_pricing_id
|
||
|
|
ON channel_account_stats_pricing_intervals (pricing_id);
|