summaryrefslogtreecommitdiff
path: root/db/migrate/20190409224933_add_name_to_geo_nodes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190409224933_add_name_to_geo_nodes.rb')
-rw-r--r--db/migrate/20190409224933_add_name_to_geo_nodes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20190409224933_add_name_to_geo_nodes.rb b/db/migrate/20190409224933_add_name_to_geo_nodes.rb
index 2dff81b429c..65c01683995 100644
--- a/db/migrate/20190409224933_add_name_to_geo_nodes.rb
+++ b/db/migrate/20190409224933_add_name_to_geo_nodes.rb
@@ -10,7 +10,7 @@ class AddNameToGeoNodes < ActiveRecord::Migration[5.0]
DOWNTIME = false
def up
- add_column :geo_nodes, :name, :string
+ add_column :geo_nodes, :name, :string # rubocop:disable Migration/AddLimitToStringColumns
# url is also unique, and its type and size is identical to the name column,
# so this is safe.