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

20130705171042_add_description_to_runner.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e04e98d1090895694ea47db887da59fd0865b0c (plain)
1
2
3
4
5
class AddDescriptionToRunner < ActiveRecord::Migration
  def change
    add_column :runners, :description, :string
  end
end