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

20200219135440_add_limit_metric_type_to_list.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35e36b4805ba4b12cbbf18f8ebc1ffa86b910143 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :lists, :limit_metric, :string, limit: 20
  end
end