From 153a50ee504cd5fcffcffc6e0e3c34e9b1be9832 Mon Sep 17 00:00:00 2001 From: David Allen Date: Mon, 26 May 2025 22:47:42 -0600 Subject: [PATCH] chore: removed migrations --- migrations/probe_states.down.sql | 3 --- migrations/probe_states.up.sql | 10 ---------- 2 files changed, 13 deletions(-) delete mode 100644 migrations/probe_states.down.sql delete mode 100644 migrations/probe_states.up.sql diff --git a/migrations/probe_states.down.sql b/migrations/probe_states.down.sql deleted file mode 100644 index 84ef1e5..0000000 --- a/migrations/probe_states.down.sql +++ /dev/null @@ -1,3 +0,0 @@ -DROP TABLE IF EXISTS magellan_probe_states; -DROP INDEX IF EXISTS magellan_probe_states_index_host; -DROP INDEX IF EXISTS magellan_probe_states_index_state; \ No newline at end of file diff --git a/migrations/probe_states.up.sql b/migrations/probe_states.up.sql deleted file mode 100644 index 703771e..0000000 --- a/migrations/probe_states.up.sql +++ /dev/null @@ -1,10 +0,0 @@ -CREATE TABLE IF NOT EXISTS magellan_probe_states ( - host TEXT PRIMARY KEY NOT NULL, - port INTEGER, - protocol TEXT, - state INTEGER, - updated TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW() -); - -CREATE INDEX IF NOT EXISTS magellan_probe_states_index_host ON magellan_probe_states (host); -CREATE INDEX IF NOT EXISTS magellan_probe_states_index_state ON magellan_proble_states (state); \ No newline at end of file