* Remove custom profile fields * Update profile model * Fix specs, more cleanup * Remove no longer valid validation * Update spec * Update search serializer spec * Update migration
7 lines
163 B
Ruby
7 lines
163 B
Ruby
class DropCustomProfileFields < ActiveRecord::Migration[6.1]
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
drop_table :custom_profile_fields, if_exists: true
|
|
end
|
|
end
|