Files
leadchat/db/migrate/20230503101201_create_sla_policies.rb
2023-05-11 22:42:56 +05:30

14 lines
378 B
Ruby

class CreateSlaPolicies < ActiveRecord::Migration[6.1]
def change
create_table :sla_policies do |t|
t.string :name, null: false
t.float :frt_threshold, default: nil
t.float :rt_threshold, default: nil
t.boolean 'only_during_business_hours', default: false
t.references :account, index: true, null: false
t.timestamps
end
end
end