Add booth limit

This commit is contained in:
nasia 2017-07-28 21:46:48 +03:00
parent 703813248d
commit b59cb88540
10 changed files with 66 additions and 18 deletions

View file

@ -0,0 +1,5 @@
class AddBoothLimitToConferences < ActiveRecord::Migration
def change
add_column :conferences, :booth_limit, :integer, default: 0
end
end