Files
archived-hc-harbor/db/migrate/20250425211619_add_ysws_program_to_heartbeats.rb
2025-04-26 12:15:15 -04:00

6 lines
164 B
Ruby

class AddYswsProgramToHeartbeats < ActiveRecord::Migration[8.0]
def change
add_column :heartbeats, :ysws_program, :integer, default: 0, null: false
end
end