nim-chat-sdk/migrations/001_create_ratelimit_state.sql

7 lines
237 B
MySQL
Raw Normal View History

2025-07-14 11:14:36 +03:00
-- will only exist one row in the table
CREATE TABLE IF NOT EXISTS bucket_state (
id INTEGER PRIMARY KEY,
budget INTEGER NOT NULL,
budget_cap INTEGER NOT NULL,
last_time_full_seconds INTEGER NOT NULL
)