mirror of
https://github.com/whit3rabbit/anyllm-proxy.git
synced 2026-09-21 16:00:49 +00:00
fix: use SQL comments in SQL string, move apply_env_aliases to cfg(test)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
f230085872
commit
50b70c4460
@@ -75,9 +75,9 @@ pub fn init_db(conn: &Connection) -> rusqlite::Result<()> {
|
||||
);
|
||||
CREATE INDEX IF NOT EXISTS idx_audit_log_timestamp ON audit_log(timestamp);
|
||||
|
||||
// Note: batch file JSONL is stored directly in SQLite. For large batch files
|
||||
// (>10MB), consider external blob storage. Current design prioritizes simplicity
|
||||
// and single-binary deployment over storage efficiency.
|
||||
-- Note: batch file JSONL is stored directly in SQLite. For large batch files
|
||||
-- (>10MB), consider external blob storage. Current design prioritizes simplicity
|
||||
-- and single-binary deployment over storage efficiency.
|
||||
CREATE TABLE IF NOT EXISTS batch_file (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
file_id TEXT NOT NULL UNIQUE,
|
||||
|
||||
Reference in New Issue
Block a user