summaryrefslogtreecommitdiff
path: root/db/migrate/20191208110214_add_suggestion_commit_message_to_projects.rb
blob: cb897edde8e4c291e8ea045064a243d460e9dbbb (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddSuggestionCommitMessageToProjects < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :projects, :suggestion_commit_message, :string, limit: 255 # rubocop:disable Migration/AddColumnsToWideTables
  end
end