summaryrefslogtreecommitdiff
path: root/db/migrate/20200511115430_add_inherit_from_to_services.rb
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