10 lines
240 B
Ruby
10 lines
240 B
Ruby
|
class DataPrivacyDeleteName < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
|
||
|
# return if it's a new setup
|
||
|
return if !Setting.exists?(name: 'system_init_done')
|
||
|
|
||
|
remove_column :data_privacy_tasks, :name, :string, limit: 150
|
||
|
end
|
||
|
end
|