summaryrefslogtreecommitdiff
path: root/db/migrate/20191213143656_create_ci_pipelines_config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20191213143656_create_ci_pipelines_config.rb')
-rw-r--r--db/migrate/20191213143656_create_ci_pipelines_config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20191213143656_create_ci_pipelines_config.rb b/db/migrate/20191213143656_create_ci_pipelines_config.rb
index 92636f35d01..a1821ee9f66 100644
--- a/db/migrate/20191213143656_create_ci_pipelines_config.rb
+++ b/db/migrate/20191213143656_create_ci_pipelines_config.rb
@@ -8,7 +8,7 @@ class CreateCiPipelinesConfig < ActiveRecord::Migration[5.2]
t.references :pipeline,
primary_key: true,
foreign_key: { to_table: :ci_pipelines, on_delete: :cascade }
- t.text :content, null: false
+ t.text :content, null: false # rubocop:disable Migration/AddLimitToTextColumns
end
end
end