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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-05-09 14:14:45 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-05-09 21:09:41 +0300
commitf09dcbd9bd2590bb66ee49b65637525a3c71a307 (patch)
tree8cdcbb6667697c559b59c4548c0857da364b8128 /db/schema.rb
parentf2a4420d66216e3a9172f4ab45c6b4fa96578117 (diff)
Make retried to be nullable
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 8046e9b48a7..a54a57bd4da 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -232,7 +232,7 @@ ActiveRecord::Schema.define(version: 20170504102911) do
t.integer "lock_version"
t.string "coverage_regex"
t.integer "auto_canceled_by_id"
- t.boolean "retried", default: false, null: false
+ t.boolean "retried"
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