Files
Wormhole/migrations/003_system_settings.sql
T
rose_cat707 612d68f56f feat: Wormhole 内网穿透与反向代理网关
Go + Vue 管理台,SQLite 持久化;支持隧道/域名穿透、域名转发插件链、访客认证、
IP 规则、API Key、Docker 单镜像部署;配置通过 Web 系统设置管理,无需 YAML 文件。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 12:15:02 +08:00

8 lines
188 B
SQL

-- System settings stored in DB (also via GORM AutoMigrate)
CREATE TABLE IF NOT EXISTS system_settings (
id INTEGER PRIMARY KEY,
payload TEXT NOT NULL,
updated_at DATETIME
);