Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20191208110214_add_suggestion_commit_message_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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