10 lines
177 B
Ruby
10 lines
177 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddGroupIdToServices < ActiveRecord::Migration[6.0]
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
add_column :services, :group_id, :bigint
|
||
|
end
|
||
|
end
|