Accepts incoming events and correctly parses them into events. GeoLite2 integration complete"
This commit is contained in:
16
db/migrate/20251103103521_create_geo_ip_databases.rb
Normal file
16
db/migrate/20251103103521_create_geo_ip_databases.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
class CreateGeoIpDatabases < ActiveRecord::Migration[8.1]
|
||||
def change
|
||||
create_table :geo_ip_databases do |t|
|
||||
t.string :database_type
|
||||
t.string :version
|
||||
t.string :file_path
|
||||
t.integer :file_size
|
||||
t.string :checksum_md5
|
||||
t.datetime :downloaded_at
|
||||
t.datetime :last_checked_at
|
||||
t.boolean :is_active
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user