osem-fcy/db/migrate/20181229233813_add_code_of_conduct_to_conference.rb
Henne Vogelsang b9a50ef20d
Drop Organization from database
Rolling back this feature. It was a nice attempt but no one ever followed up
and made this something else than a code of conduct holder...
2024-06-07 16:11:25 +02:00

5 lines
142 B
Ruby

class AddCodeOfConductToConference < ActiveRecord::Migration[7.0]
def change
add_column :conferences, :code_of_conduct, :text
end
end