feat: initial setup backend with default routes and db connection #2

Merged
Pheanox merged 5 commits from feature/inital-setup-backend into main 2024-12-30 20:34:25 +01:00
Showing only changes of commit 35cac7bb0d - Show all commits
+1 -1
View File
@@ -13,7 +13,7 @@ CREATE TABLE IF NOT EXISTS lp_ttn_end_device_uplinks (
updated_at_utc TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
);
CREATE UNIQUE INDEX idx_unique_device ON lp_ttn_end_device_uplinks (
CREATE UNIQUE INDEX IF NOT EXISTS idx_unique_device ON lp_ttn_end_device_uplinks (
device_id,
application_ids,
dev_eui,