Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130522141856_add_more_fields_to_service.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 298e902df2f9284701c4260db1ac92c6706071fa (plain)
1
2
3
4
5
6
class AddMoreFieldsToService < ActiveRecord::Migration
  def change
    add_column :services, :subdomain, :string
    add_column :services, :room, :string
  end
end