docbrown/db/migrate/20210720042422_drop_custom_profile_fields.rb
Michael Kohl dc27f597fb
Remove CustomProfileField (#14286)
* Remove custom profile fields

* Update profile model

* Fix specs, more cleanup

* Remove no longer valid validation

* Update spec

* Update search serializer spec

* Update migration
2021-07-22 10:05:39 +07:00

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