chatwoot-develop/db/migrate/20230905060223_add_regex_to_custom_attribute_definition.rb

7 lines
232 B
Ruby
Executable File

class AddRegexToCustomAttributeDefinition < ActiveRecord::Migration[7.0]
def change
add_column :custom_attribute_definitions, :regex_pattern, :string
add_column :custom_attribute_definitions, :regex_cue, :string
end
end