debian-mirror-gitlab/db/migrate/20200511115430_add_inherit_from_to_services.rb

10 lines
188 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
class AddInheritFromToServices < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :services, :inherit_from_id, :bigint
end
end