debian-mirror-gitlab/db/migrate/20130522141856_add_more_fields_to_service.rb
2016-06-16 23:09:34 +05:30

8 lines
187 B
Ruby

# rubocop:disable all
class AddMoreFieldsToService < ActiveRecord::Migration
def change
add_column :services, :subdomain, :string
add_column :services, :room, :string
end
end