Files
archived-hc-harbor/db/migrate/20250306033109_change_heartbeats_time_to_float8.rb
2025-03-05 23:24:30 -05:00

6 lines
148 B
Ruby

class ChangeHeartbeatsTimeToFloat8 < ActiveRecord::Migration[8.0]
def change
change_column :heartbeats, :time, :float8, null: false
end
end