2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 12:06:56 +08:00
|
|
|
class ShortenTopicCustomFieldsIndex < ActiveRecord::Migration[4.2]
|
2016-05-20 12:35:09 +10:00
|
|
|
def up
|
|
|
|
remove_index :topic_custom_fields, :value
|
|
|
|
add_index :topic_custom_fields,
|
|
|
|
%i[value name],
|
|
|
|
name: "topic_custom_fields_value_key_idx",
|
|
|
|
where: "value IS NOT NULL AND char_length(value) < 400"
|
|
|
|
end
|
2023-12-15 23:46:04 +08:00
|
|
|
|
2016-05-20 12:35:09 +10:00
|
|
|
def down
|
|
|
|
remove_index :topic_custom_fields, :value, name: "topic_custom_fields_value_key_idx"
|
|
|
|
add_index :topic_custom_fields, :value
|
|
|
|
end
|
|
|
|
end
|