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

20160518200441_add_artifacts_expire_date_to_ci_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 143b84a1662a80c7d50ab4645a3244bd2b786a27 (plain)
1
2
3
4
5
6
# rubocop:disable Migration/Datetime
class AddArtifactsExpireDateToCiBuilds < ActiveRecord::Migration[4.2]
  def change
    add_column :ci_builds, :artifacts_expire_at, :timestamp
  end
end