Files
archived-hc-harbor/db/migrate/20240316000003_remove_status_from_leaderboards.rb
2025-02-17 19:05:30 -05:00

6 lines
140 B
Ruby

class RemoveStatusFromLeaderboards < ActiveRecord::Migration[8.0]
def change
remove_column :leaderboards, :status, :integer
end
end