6 lines
146 B
Ruby
6 lines
146 B
Ruby
|
|
class AddBoothLimitToConferences < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :booth_limit, :integer, default: 0
|
||
|
|
end
|
||
|
|
end
|