Feat: Automations Actions (#3564)

This commit is contained in:
Tejaswini Chile
2022-01-13 11:21:06 +05:30
committed by GitHub
parent 905fd62974
commit 7df68c6388
13 changed files with 124 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
class AddActiveFlagToAutomationRule < ActiveRecord::Migration[6.1]
def change
add_column :automation_rules, :active, :boolean, default: true, null: false
end
end