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

20121108174237_add_started_at_to_build.rb « migrate « ci « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4d65c75004b5d9b6be98d252eb8cf4afb280e9a (plain)
1
2
3
4
5
class AddStartedAtToBuild < ActiveRecord::Migration
  def change
    add_column :builds, :started_at, :datetime, null: true
  end
end