6 lines
160 B
Ruby
6 lines
160 B
Ruby
|
|
class AddRegistrationLimitToConferences < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :registration_limit, :integer, default: 0
|
||
|
|
end
|
||
|
|
end
|