From d2b299c83b5525a5f3a6064f365e61854541bfd5e482e7b1a1a8a740589dd40f Mon Sep 17 00:00:00 2001 From: Philipp Schweizer Date: Mon, 30 Dec 2024 23:23:15 +0100 Subject: [PATCH] fix: remove blocking index from db --- server/sql/tables.sql | 8 -------- 1 file changed, 8 deletions(-) diff --git a/server/sql/tables.sql b/server/sql/tables.sql index 2bed8bb..babf48b 100644 --- a/server/sql/tables.sql +++ b/server/sql/tables.sql @@ -13,14 +13,6 @@ CREATE TABLE IF NOT EXISTS lp_ttn_end_device_uplinks ( updated_at_utc TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ); -CREATE UNIQUE INDEX IF NOT EXISTS idx_unique_device ON lp_ttn_end_device_uplinks ( - device_id, - application_ids, - dev_eui, - join_eui, - dev_addr -); - CREATE TABLE IF NOT EXISTS wifi_scan ( wifi_scan_id UUID PRIMARY KEY, lp_ttn_end_device_uplinks_id UUID,