diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-05-18 15:21:51 -0500 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-06-13 11:01:19 +0100 |
commit | aea4041ce96f18afea70da15af3cbe1be4fa1f94 (patch) | |
tree | 7d2fe32a2e20ed9cd7f80bf07aefa5bcb37e7bb7 /db | |
parent | 7a1b2e4f94e3e651d3264aa566a9056fe0f554e9 (diff) | |
download | gitlab-ce-aea4041ce96f18afea70da15af3cbe1be4fa1f94.tar.gz |
Allow to expire build artifacts
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20160518200441_add_artifacts_expire_date_to_ci_builds.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20160518200441_add_artifacts_expire_date_to_ci_builds.rb b/db/migrate/20160518200441_add_artifacts_expire_date_to_ci_builds.rb new file mode 100644 index 00000000000..915167b038d --- /dev/null +++ b/db/migrate/20160518200441_add_artifacts_expire_date_to_ci_builds.rb @@ -0,0 +1,5 @@ +class AddArtifactsExpireDateToCiBuilds < ActiveRecord::Migration + def change + add_column :ci_builds, :artifacts_expire_at, :timestamp + end +end |