Files
archived-hc-harbor/db/migrate/20250315030446_add_ip_address_to_heartbeats.rb
2025-03-14 23:07:08 -04:00

6 lines
132 B
Ruby

class AddIpAddressToHeartbeats < ActiveRecord::Migration[8.0]
def change
add_column :heartbeats, :ip_address, :inet
end
end