summaryrefslogtreecommitdiff
path: root/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2016-06-09 13:39:16 +0100
committerSean McGivern <sean@gitlab.com>2016-06-09 16:05:25 +0100
commit98bb435f4266719b1e0fca57472a0f4e50d30371 (patch)
tree530dcd4c4ee397ae77e94a493fcefae6b4df72a7 /db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
parent3803b380b43af2bdb20dced27fce79511dfb2897 (diff)
downloadgitlab-ce-98bb435f4266719b1e0fca57472a0f4e50d30371.tar.gz
Enable RuboCop for migrationsenable-rubocop-for-migrations
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
Diffstat (limited to 'db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb')
-rw-r--r--db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb b/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
index 8d47dac6441..229c9942b50 100644
--- a/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
+++ b/db/migrate/20150930095736_add_null_to_name_for_ci_projects.rb
@@ -1,3 +1,4 @@
+# rubocop:disable all
class AddNullToNameForCiProjects < ActiveRecord::Migration
def up
change_column_null :ci_projects, :name, true