024c15a836
Go 控制面(SQLite + REST API)嵌入 Mihomo 数据面,Vue 3 多语言 Web 管理台。 含订阅/节点/规则/出站/监控/日志、OpenAPI、API Key、Gitea Actions CI 与开源文档。 Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
212 B
SQL
8 lines
212 B
SQL
-- +goose Up
|
|
INSERT OR IGNORE INTO settings (key, value) VALUES
|
|
('proxy_auth_user', ''),
|
|
('proxy_auth_pass', '');
|
|
|
|
-- +goose Down
|
|
DELETE FROM settings WHERE key IN ('proxy_auth_user', 'proxy_auth_pass');
|