mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
chore: removed migrations
This commit is contained in:
parent
62a6226067
commit
153a50ee50
2 changed files with 0 additions and 13 deletions
|
|
@ -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;
|
||||
|
|
@ -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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue