Files
fizzy/db/migrate/20241028183212_make_event_summary_not_null.rb
T
Jose Farias 33afd180a4 Make event summaries not null
We can do this now that the data has been migrated
2024-10-28 12:33:09 -06:00

6 lines
135 B
Ruby

class MakeEventSummaryNotNull < ActiveRecord::Migration[8.0]
def change
change_column_null :events, :summary_id, false
end
end