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

20200410104828_add_comment_detail_to_services.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61d993cce3213de4975ac752f571b43001e75f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class AddCommentDetailToServices < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    add_column :services, :comment_detail, :smallint
  end

  def down
    remove_column :services, :comment_detail
  end
end