summaryrefslogtreecommitdiff
path: root/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb')
-rw-r--r--db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb b/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb
index 2c3a54b12a9..37ba1090cf0 100644
--- a/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb
+++ b/db/migrate/20190301182457_add_external_hostname_to_ingress_and_knative.rb
@@ -4,7 +4,7 @@ class AddExternalHostnameToIngressAndKnative < ActiveRecord::Migration[5.0]
DOWNTIME = false
def change
- add_column :clusters_applications_ingress, :external_hostname, :string
- add_column :clusters_applications_knative, :external_hostname, :string
+ add_column :clusters_applications_ingress, :external_hostname, :string # rubocop:disable Migration/AddLimitToStringColumns
+ add_column :clusters_applications_knative, :external_hostname, :string # rubocop:disable Migration/AddLimitToStringColumns
end
end