diff options
author | Alfredo Sumaran <alfredo@gitlab.com> | 2016-04-21 12:47:32 -0500 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-04-21 12:47:32 -0500 |
commit | 3b39214f29f5c2e773f2af923cec70a463f39a73 (patch) | |
tree | 5e519a86c4f0431ca3f309474746a33d70dd1c9f /db/schema.rb | |
parent | d4f6d39896392a964c254ad542eeefeb7c254093 (diff) | |
parent | 1c7c114e76510349bebb2494c951713813526489 (diff) | |
download | gitlab-ce-3b39214f29f5c2e773f2af923cec70a463f39a73.tar.gz |
Merge remote-tracking branch 'origin/master' into issue_14904
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index a93ba690730..a743e682423 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -171,14 +171,21 @@ ActiveRecord::Schema.define(version: 20160419120017) do t.text "yaml_errors" t.datetime "committed_at" t.integer "gl_project_id" + t.string "status" + t.datetime "started_at" + t.datetime "finished_at" + t.integer "duration" end + add_index "ci_commits", ["gl_project_id", "sha"], name: "index_ci_commits_on_gl_project_id_and_sha", using: :btree + add_index "ci_commits", ["gl_project_id", "status"], name: "index_ci_commits_on_gl_project_id_and_status", using: :btree add_index "ci_commits", ["gl_project_id"], name: "index_ci_commits_on_gl_project_id", using: :btree add_index "ci_commits", ["project_id", "committed_at", "id"], name: "index_ci_commits_on_project_id_and_committed_at_and_id", using: :btree add_index "ci_commits", ["project_id", "committed_at"], name: "index_ci_commits_on_project_id_and_committed_at", using: :btree add_index "ci_commits", ["project_id", "sha"], name: "index_ci_commits_on_project_id_and_sha", using: :btree add_index "ci_commits", ["project_id"], name: "index_ci_commits_on_project_id", using: :btree add_index "ci_commits", ["sha"], name: "index_ci_commits_on_sha", using: :btree + add_index "ci_commits", ["status"], name: "index_ci_commits_on_status", using: :btree create_table "ci_events", force: :cascade do |t| t.integer "project_id" |