Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200511115430_add_inherit_from_to_services.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c409b543dbf4ed47c63b2cb8b595397097143022 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddInheritFromToServices < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :services, :inherit_from_id, :bigint
  end
end