summaryrefslogtreecommitdiff
path: root/db/migrate/20200803111512_add_group_id_to_services.rb
blob: 7d4a0ef4dd5d2ce0340204b8a819f4119e5b81d9 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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