9 lines
216 B
Ruby
9 lines
216 B
Ruby
# 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
|