shipit-engine 0.4.6 → 0.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9e32334236717f76307fe84d8fe45c15546b9228
4
- data.tar.gz: f38098535e806bb859e133f000c30980d83b1b93
3
+ metadata.gz: af377b7533b84c0ddeb48fb768bd3d2c4031c32b
4
+ data.tar.gz: 7b1c80c813b62ca6671cb877977770a3408a28cd
5
5
  SHA512:
6
- metadata.gz: 2cce658d2bfb06ce8964f06ee27b1a33aa9683be14b1bf13f0d4fc1f649b3eec36eb6247e5c8478aad575b772a396a8cc7ccc2c3ab14491a79b1b737eaf96ee1
7
- data.tar.gz: 3ba3b818c13a2a61c05dab767c9273e62524f22d2d4ff5398b76abd27db9b65df308684490da2a95665f3c5278a84e71a2bfe864ae5f4c758b7e158b88c2f671
6
+ metadata.gz: a85ec6846340a793b1056bda78ae7f69095414109df625efdbc4856c0c142a10ab632c8ac5d090bbdc9732411376e7dd379fefd8781babea7f173c6e23344a8c
7
+ data.tar.gz: 484086e2df866db17b04b1f976ecb31f7b48f796ab1e0195cedfe465dc84ec7ec7494c03dca4d7abce36beec5572c3acaa9c5a0e0789c33a73d1632681208dc8
@@ -0,0 +1,6 @@
1
+ class ImproveIndexesOnTasks < ActiveRecord::Migration
2
+ def change
3
+ add_index :tasks, [:type, :stack_id, :status], name: :index_tasks_by_stack_and_status
4
+ add_index :tasks, [:type, :stack_id, :parent_id], name: :index_tasks_by_stack_and_parent
5
+ end
6
+ end
@@ -1,3 +1,3 @@
1
1
  module Shipit
2
- VERSION = '0.4.6'
2
+ VERSION = '0.4.7'
3
3
  end
Binary file
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20151103144716) do
14
+ ActiveRecord::Schema.define(version: 20151113151323) do
15
15
 
16
16
  create_table "api_clients", force: :cascade do |t|
17
17
  t.text "permissions", limit: 65535
@@ -114,7 +114,7 @@ ActiveRecord::Schema.define(version: 20151103144716) do
114
114
  t.datetime "updated_at"
115
115
  t.string "branch", limit: 255, default: "master", null: false
116
116
  t.string "deploy_url", limit: 255
117
- t.string "lock_reason", limit: 255
117
+ t.string "lock_reason", limit: 4096
118
118
  t.integer "tasks_count", limit: 4, default: 0, null: false
119
119
  t.boolean "continuous_deployment", default: false, null: false
120
120
  t.integer "undeployed_commits_count", limit: 4, default: 0, null: false
Binary file