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

20150306131416_add_contacted_at_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: b28f1ba5cffc92678b1909a5cb678307cca615a3 (plain)
1
2
3
4
5
class AddContactedAtToRunner < ActiveRecord::Migration
  def change
    add_column :runners, :contacted_at, :datetime, null: true
  end
end