This commit is contained in:
2026-07-25 18:42:09 -05:00
parent 7a02c50aa9
commit ec57321577
11 changed files with 136 additions and 28 deletions
+9
View File
@@ -0,0 +1,9 @@
ALTER TABLE authorization_hosts
ADD COLUMN IF NOT EXISTS lan_ip VARCHAR(64) NOT NULL DEFAULT ''
AFTER hostname;
ALTER TABLE audit_events
ADD COLUMN IF NOT EXISTS lan_ip VARCHAR(64) NOT NULL DEFAULT ''
AFTER source_ip;
INSERT IGNORE INTO schema_migrations (version) VALUES (3);