chore: removed migrations

This commit is contained in:
David Allen 2025-05-26 22:47:42 -06:00
parent 62a6226067
commit 153a50ee50
Signed by: towk
GPG key ID: 0430CDBE22619155
2 changed files with 0 additions and 13 deletions

View file

@ -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;

View file

@ -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);