Merge branch 'develop' into feat/promoters

This commit is contained in:
kbe
2025-09-11 08:41:23 +02:00
19 changed files with 889 additions and 1279 deletions

View File

@@ -0,0 +1,5 @@
class AddAllowBookingDuringEventToEvents < ActiveRecord::Migration[8.0]
def change
add_column :events, :allow_booking_during_event, :boolean, default: false, null: false
end
end