osem-fcy/db/migrate/20170728182033_add_booth_limit_to_conferences.rb
2018-04-04 10:28:10 -07:00

7 lines
177 B
Ruby

# frozen_string_literal: true
class AddBoothLimitToConferences < ActiveRecord::Migration
def change
add_column :conferences, :booth_limit, :integer, default: 0
end
end