feat: added category management

This commit is contained in:
Andrew Rioux
2025-01-31 00:04:54 -05:00
parent b381261cea
commit 66b59531c5
6 changed files with 381 additions and 29 deletions

View File

@@ -39,8 +39,11 @@ CREATE TABLE beacon_template (
source_netmask int,
source_gateway varchar,
FOREIGN KEY (config_id) REFERENCES beacon_config
FOREIGN KEY (listener_id) REFERENCES beacon_listener
default_category int,
FOREIGN KEY (config_id) REFERENCES beacon_config,
FOREIGN KEY (listener_id) REFERENCES beacon_listener,
FOREIGN KEY (default_category) REFERENCES beacon_category
);
CREATE TABLE beacon_instance (