osem-fcy/db/migrate/20160323154504_add_max_attendees_to_events.rb

6 lines
128 B
Ruby
Raw Normal View History

2016-04-22 18:18:46 +03:00
class AddMaxAttendeesToEvents < ActiveRecord::Migration
def change
add_column :events, :max_attendees, :integer
end
end