osem-fcy/db/migrate/20181229233812_drop_organizations.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

11 lines
270 B
Ruby

class DropOrganizations < ActiveRecord::Migration[7.0]
def change
drop_table :organizations do |t|
t.string :name, null: false
t.text :description
t.string :picture
end
remove_reference :conferences, :organization, index: true
end
end