debian-mirror-gitlab/db/migrate/20190918121135_add_cleanup_status_reason_to_cluster.rb
2019-12-26 22:10:19 +05:30

13 lines
312 B
Ruby

# frozen_string_literal: true
class AddCleanupStatusReasonToCluster < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
add_column :clusters, :cleanup_status_reason, :text
end
end