aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20231220195147_remove_organisation_from_events.rb
blob: 5198e98b7dc7941dd31d4c2c197620444406d6cb (plain) (blame)
1
2
3
4
5
class RemoveOrganisationFromEvents < ActiveRecord::Migration[7.1]
  def change
    remove_reference :events, :organisation, null: false, foreign_key: true
  end
end