summaryrefslogtreecommitdiff
path: root/db/migrate/20191208110214_add_suggestion_commit_message_to_projects.rb
blob: c4344cf212c39c26a01adf0400632047c79a3a92 (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
  end
end