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: 915167b038d482490b3c394293736e53ed321ca6 (plain)
1
2
3
4
5
class AddArtifactsExpireDateToCiBuilds < ActiveRecord::Migration
  def change
    add_column :ci_builds, :artifacts_expire_at, :timestamp
  end
end