summaryrefslogtreecommitdiff
path: root/db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb')
-rw-r--r--db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb b/db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb
index 60815e0c31a..3ab808ba667 100644
--- a/db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb
+++ b/db/migrate/20181211092510_add_name_author_id_and_sha_to_releases.rb
@@ -7,7 +7,7 @@ class AddNameAuthorIdAndShaToReleases < ActiveRecord::Migration[5.0]
def change
add_column :releases, :author_id, :integer
- add_column :releases, :name, :string
- add_column :releases, :sha, :string
+ add_column :releases, :name, :string # rubocop:disable Migration/AddLimitToStringColumns
+ add_column :releases, :sha, :string # rubocop:disable Migration/AddLimitToStringColumns
end
end