osem-fcy/db/migrate/20170728182033_add_booth_limit_to_conferences.rb

8 lines
177 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-07-28 21:46:48 +03:00
class AddBoothLimitToConferences < ActiveRecord::Migration
def change
add_column :conferences, :booth_limit, :integer, default: 0
end
end