debian-mirror-gitlab/db/migrate/20200219135440_add_limit_metric_type_to_list.rb
2020-05-24 23:13:21 +05:30

10 lines
236 B
Ruby

# frozen_string_literal: true
class AddLimitMetricTypeToList < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :lists, :limit_metric, :string, limit: 20 # rubocop:disable Migration/PreventStrings
end
end