We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24d2efe commit bf1b300Copy full SHA for bf1b300
1 file changed
rust/migrations/20260313093612_remove_alive_methods-checks.sql
@@ -0,0 +1,8 @@
1
+DROP TABLE alive_methods;
2
+
3
+CREATE TABLE alive_methods (
4
+ id INTEGER,
5
+ method TEXT DEFAULT 'icmp',
6
+ PRIMARY KEY (id, method),
7
+ FOREIGN KEY (id) REFERENCES client_scan_map(id) ON DELETE CASCADE
8
+);
0 commit comments