mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-18 22:21:11 +00:00
5 lines
160 B
Ruby
5 lines
160 B
Ruby
class AddRegistrationLimitToConferences < ActiveRecord::Migration
|
|
def change
|
|
add_column :conferences, :registration_limit, :integer, default: 0
|
|
end
|
|
end
|