* Add custom_profile_fields table * Add CustomProfileField model and refactor * Remove trailing whitespace * Stop ignoring removed column * Add explanatory comment * Update service object * Fix bug in service object * Refactor and fix specs * Increase limit from 3 to 5 * Update comment to reflect code changes
7 lines
159 B
Ruby
7 lines
159 B
Ruby
FactoryBot.define do
|
|
factory :custom_profile_field do
|
|
profile
|
|
sequence(:label) { |n| "Email #{n}" }
|
|
description { "some description" }
|
|
end
|
|
end
|