debian-mirror-gitlab/db/migrate/20190623212503_add_cluster_id_to_deployments.rb
2019-09-30 21:07:59 +05:30

10 lines
188 B
Ruby

# frozen_string_literal: true
class AddClusterIdToDeployments < ActiveRecord::Migration[5.1]
DOWNTIME = false
def change
add_column :deployments, :cluster_id, :integer
end
end