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

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