develop #3

Merged
kbe merged 227 commits from develop into main 2025-09-16 14:35:23 +00:00
2 changed files with 3 additions and 5 deletions
Showing only changes of commit 20f926cd7a - Show all commits

View File

@@ -19,6 +19,9 @@ class CreateEvents < ActiveRecord::Migration[8.0]
t.boolean :featured, default: false, null: false t.boolean :featured, default: false, null: false
t.references :user, null: false, foreign_key: false t.references :user, null: false, foreign_key: false
# Allow ticket sell during the event
t.boolean :allow_booking_during_event, default: false, null: false
t.timestamps t.timestamps
end end

View File

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