diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2015-12-30 14:41:44 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-01-14 12:48:14 +0100 |
commit | 662f4b9e1dec8e461c4ea8da3ccc46a259d9d205 (patch) | |
tree | 67560291d8f60faf7da1adf18f38626c6039bcbf /db/schema.rb | |
parent | c177784d5af6b47ae613f922e075a38fc56ad711 (diff) | |
download | gitlab-ce-662f4b9e1dec8e461c4ea8da3ccc46a259d9d205.tar.gz |
Add artifacts metadata uploader filed
Artifacts metadata field will be used to store a filename of gzipped
file containing metadata definition for given artifacts archive.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index 42c3e79f9d7..2fc8c4d5ed4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -123,6 +123,7 @@ ActiveRecord::Schema.define(version: 20160113111034) do t.string "description" t.text "artifacts_file" t.integer "gl_project_id" + t.text "artifacts_metadata" end add_index "ci_builds", ["commit_id", "stage_idx", "created_at"], name: "index_ci_builds_on_commit_id_and_stage_idx_and_created_at", using: :btree |