Chatwoot/db/migrate/20220110090126_add_active_flag_to_automation_rule.rb
2022-01-13 11:21:06 +05:30

5 lines
170 B
Ruby

class AddActiveFlagToAutomationRule < ActiveRecord::Migration[6.1]
def change
add_column :automation_rules, :active, :boolean, default: true, null: false
end
end