This commit is contained in:
Dan Milne
2025-11-09 21:17:48 +11:00
parent 1825905320
commit 1e4c6f35d8
3 changed files with 3 additions and 4 deletions

View File

@@ -1 +1 @@
0.1.2
0.1.3

File diff suppressed because one or more lines are too long

View File

@@ -66,7 +66,7 @@ ActiveRecord::Schema[8.1].define(version: 2025_11_08_042936) do
t.string "country"
t.datetime "created_at", null: false
t.text "creation_reason"
t.integer "events_count"
t.integer "events_count", default: 0, null: false
t.boolean "is_datacenter", default: false
t.boolean "is_proxy", default: false
t.boolean "is_vpn", default: false
@@ -79,6 +79,7 @@ ActiveRecord::Schema[8.1].define(version: 2025_11_08_042936) do
t.index ["asn_org"], name: "index_network_ranges_on_asn_org"
t.index ["company"], name: "index_network_ranges_on_company"
t.index ["country"], name: "index_network_ranges_on_country"
t.index ["events_count"], name: "index_network_ranges_on_events_count"
t.index ["is_datacenter", "is_proxy", "is_vpn"], name: "idx_network_flags"
t.index ["is_datacenter"], name: "index_network_ranges_on_is_datacenter"
t.index ["network"], name: "index_network_ranges_on_network", opclass: :inet_ops, using: :gist