aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20231220195147_remove_organisation_from_events.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20231220195147_remove_organisation_from_events.rb')
-rw-r--r--db/migrate/20231220195147_remove_organisation_from_events.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20231220195147_remove_organisation_from_events.rb b/db/migrate/20231220195147_remove_organisation_from_events.rb
new file mode 100644
index 0000000..5198e98
--- /dev/null
+++ b/db/migrate/20231220195147_remove_organisation_from_events.rb
@@ -0,0 +1,5 @@
+class RemoveOrganisationFromEvents < ActiveRecord::Migration[7.1]
+ def change
+ remove_reference :events, :organisation, null: false, foreign_key: true
+ end
+end