Based on the DnsZone and the product it's serving, we needed different neg_ttl value, so a new field is added storing the right value for it.
10 lines
174 B
Ruby
10 lines
174 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:dns_zone) do
|
|
add_column :neg_ttl, Integer, default: 3600, null: false
|
|
end
|
|
end
|
|
end
|