summaryrefslogtreecommitdiff
path: root/db/migrate/20200219135440_add_limit_metric_type_to_list.rb
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