summaryrefslogtreecommitdiff
path: root/db/migrate/20181017001059_add_cluster_type_to_clusters.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181017001059_add_cluster_type_to_clusters.rb')
-rw-r--r--db/migrate/20181017001059_add_cluster_type_to_clusters.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20181017001059_add_cluster_type_to_clusters.rb b/db/migrate/20181017001059_add_cluster_type_to_clusters.rb
index d032afe1a43..75abcfedfc9 100644
--- a/db/migrate/20181017001059_add_cluster_type_to_clusters.rb
+++ b/db/migrate/20181017001059_add_cluster_type_to_clusters.rb
@@ -9,7 +9,7 @@ class AddClusterTypeToClusters < ActiveRecord::Migration[4.2]
disable_ddl_transaction!
def up
- add_column_with_default(:clusters, :cluster_type, :smallint, default: PROJECT_CLUSTER_TYPE)
+ add_column_with_default(:clusters, :cluster_type, :smallint, default: PROJECT_CLUSTER_TYPE) # rubocop:disable Migration/AddColumnWithDefault
end
def down