summaryrefslogtreecommitdiff
path: root/db/migrate/20130522141856_add_more_fields_to_service.rb
blob: b90923ebb5763e582097222db078690221c98c47 (plain)
1
2
3
4
5
6
7
# rubocop:disable all
class AddMoreFieldsToService < ActiveRecord::Migration[4.2]
  def change
    add_column :services, :subdomain, :string
    add_column :services, :room, :string
  end
end