From 873df2e87ef7828913411c4978918ccb7418da24 Mon Sep 17 00:00:00 2001 From: git Date: Mon, 16 Jun 2025 15:28:20 +0100 Subject: [PATCH] Added column to be able to filter all devices everywhere --- central_db.sql.php | 1 + 1 file changed, 1 insertion(+) diff --git a/central_db.sql.php b/central_db.sql.php index 6cf77c8..84edfa9 100644 --- a/central_db.sql.php +++ b/central_db.sql.php @@ -5,6 +5,7 @@ CREATE TABLE mDNS ( Type ENUM('A','PTR','SRV') NOT NULL, Name VARCHAR(255), Data VARCHAR(1024), + MakeAvailableEverywhere INT DEFAULT 0, LastUpdated TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (Host,Type,Name) );