From 9ee2427349a87873ebf53bf2bd53a38cd5dee9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20W=C3=B3jcik?= Date: Tue, 12 Dec 2023 15:10:58 +0100 Subject: [PATCH] add missing migration --- src-tauri/migrations/20231212122824_update_location_stats.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src-tauri/migrations/20231212122824_update_location_stats.sql diff --git a/src-tauri/migrations/20231212122824_update_location_stats.sql b/src-tauri/migrations/20231212122824_update_location_stats.sql new file mode 100644 index 00000000..1adc0267 --- /dev/null +++ b/src-tauri/migrations/20231212122824_update_location_stats.sql @@ -0,0 +1,2 @@ +ALTER TABLE location_stats ADD COLUMN listen_port INTEGER NOT NULL DEFAULT 0; +ALTER TABLE location_stats ADD COLUMN persistent_keepalive_interval INTEGER NULL;