summaryrefslogtreecommitdiff
path: root/db/migrate/20190114172110_add_domain_to_cluster.rb
blob: ebe588d8b779426b154ee80f0a7ede64842954cd (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddDomainToCluster < ActiveRecord::Migration[5.0]
  DOWNTIME = false

  def change
    add_column :clusters, :domain, :string # rubocop:disable Migration/PreventStrings
  end
end