cangaroo 1.0.0

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.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/controllers/cangaroo/application_controller.rb +4 -0
  5. data/app/controllers/cangaroo/endpoint_controller.rb +49 -0
  6. data/app/interactors/cangaroo/authenticate_connection.rb +19 -0
  7. data/app/interactors/cangaroo/count_json_object.rb +20 -0
  8. data/app/interactors/cangaroo/handle_request.rb +10 -0
  9. data/app/interactors/cangaroo/perform_jobs.rb +31 -0
  10. data/app/interactors/cangaroo/validate_json_schema.rb +31 -0
  11. data/app/jobs/cangaroo/job.rb +63 -0
  12. data/app/models/cangaroo/connection.rb +12 -0
  13. data/config/routes.rb +3 -0
  14. data/db/migrate/20151028172151_create_cangaroo_connections.rb +12 -0
  15. data/db/migrate/20151030140821_add_parameters_to_cangaroo_connection.rb +5 -0
  16. data/lib/cangaroo.rb +10 -0
  17. data/lib/cangaroo/engine.rb +17 -0
  18. data/lib/cangaroo/version.rb +3 -0
  19. data/lib/cangaroo/webhook/client.rb +44 -0
  20. data/lib/cangaroo/webhook/error.rb +6 -0
  21. data/lib/tasks/cangaroo_tasks.rake +4 -0
  22. data/spec/controllers/cangaroo/endpoint_controller_spec.rb +72 -0
  23. data/spec/dummy/README.rdoc +28 -0
  24. data/spec/dummy/Rakefile +6 -0
  25. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  26. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  27. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  28. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  29. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  30. data/spec/dummy/bin/bundle +3 -0
  31. data/spec/dummy/bin/rails +4 -0
  32. data/spec/dummy/bin/rake +4 -0
  33. data/spec/dummy/bin/setup +29 -0
  34. data/spec/dummy/config.ru +4 -0
  35. data/spec/dummy/config/application.rb +31 -0
  36. data/spec/dummy/config/boot.rb +5 -0
  37. data/spec/dummy/config/database.yml +11 -0
  38. data/spec/dummy/config/environment.rb +5 -0
  39. data/spec/dummy/config/environments/development.rb +41 -0
  40. data/spec/dummy/config/environments/production.rb +79 -0
  41. data/spec/dummy/config/environments/test.rb +42 -0
  42. data/spec/dummy/config/initializers/assets.rb +11 -0
  43. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  44. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  45. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/spec/dummy/config/initializers/inflections.rb +16 -0
  47. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  48. data/spec/dummy/config/initializers/session_store.rb +3 -0
  49. data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
  50. data/spec/dummy/config/locales/en.yml +23 -0
  51. data/spec/dummy/config/routes.rb +4 -0
  52. data/spec/dummy/config/secrets.yml +22 -0
  53. data/spec/dummy/db/development.sqlite3 +0 -0
  54. data/spec/dummy/db/schema.rb +29 -0
  55. data/spec/dummy/db/test.sqlite3 +0 -0
  56. data/spec/dummy/log/cangaroo.log +0 -0
  57. data/spec/dummy/log/development.log +3466 -0
  58. data/spec/dummy/log/test.log +139640 -0
  59. data/spec/dummy/public/404.html +67 -0
  60. data/spec/dummy/public/422.html +67 -0
  61. data/spec/dummy/public/500.html +66 -0
  62. data/spec/dummy/public/favicon.ico +0 -0
  63. data/spec/factories/cangaroo_connections.rb +9 -0
  64. data/spec/fixtures/json_payload_no_id.json +21 -0
  65. data/spec/fixtures/json_payload_ok.json +22 -0
  66. data/spec/fixtures/json_payload_wrong_key.json +22 -0
  67. data/spec/interactors/cangaroo/authenticate_connection_spec.rb +46 -0
  68. data/spec/interactors/cangaroo/count_json_object_spec.rb +17 -0
  69. data/spec/interactors/cangaroo/handle_request_spec.rb +18 -0
  70. data/spec/interactors/cangaroo/perform_jobs_spec.rb +42 -0
  71. data/spec/interactors/cangaroo/validate_json_schema_spec.rb +51 -0
  72. data/spec/jobs/cangaroo/job_spec.rb +55 -0
  73. data/spec/lib/cangaroo/webhook/client_spec.rb +69 -0
  74. data/spec/models/cangaroo/connection_spec.rb +15 -0
  75. data/spec/rails_helper.rb +85 -0
  76. data/spec/spec_helper.rb +9 -0
  77. data/spec/support/spec_helpers.rb +11 -0
  78. metadata +345 -0
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Cangaroo::Engine => "/cangaroo"
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 1a268d087b7b15911007f38f21f3f2aedaaede6ccf632e763b39b76438b6ad4d2f0592e63f0fadc035b3460ae951faa1b6f035b4619666dc56871f1b938678bf
15
+
16
+ test:
17
+ secret_key_base: 4c8a92ff4f55dad37d7d3543094a21267b91d4911e15d1ae24613e077056e5937a18c73554091600a938d4405f8a760c90f987a01c81135fe7328176b35b4407
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,29 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20151030140821) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "cangaroo_connections", force: :cascade do |t|
20
+ t.string "name"
21
+ t.string "url"
22
+ t.string "key"
23
+ t.string "token"
24
+ t.datetime "created_at", null: false
25
+ t.datetime "updated_at", null: false
26
+ t.text "parameters"
27
+ end
28
+
29
+ end
File without changes
@@ -0,0 +1,3466 @@
1
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+  (9.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6
+  (0.1ms) select sqlite_version(*)
7
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+  (0.1ms) SELECT version FROM "schema_migrations"
9
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
10
+  (9.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
11
+  (0.2ms) select sqlite_version(*)
12
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
+  (0.1ms) SELECT version FROM "schema_migrations"
14
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
15
+  (9.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
16
+  (0.1ms) select sqlite_version(*)
17
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
+  (0.2ms) SELECT version FROM "schema_migrations"
19
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20
+  (8.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21
+  (0.1ms) select sqlite_version(*)
22
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+  (0.1ms) SELECT version FROM "schema_migrations"
24
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
25
+  (8.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
26
+  (0.1ms) select sqlite_version(*)
27
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
28
+  (0.1ms) SELECT version FROM "schema_migrations"
29
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
30
+  (8.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
31
+  (0.1ms) select sqlite_version(*)
32
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
33
+  (0.2ms) SELECT version FROM "schema_migrations"
34
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
35
+  (9.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
36
+  (0.1ms) select sqlite_version(*)
37
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.1ms) SELECT version FROM "schema_migrations"
39
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
40
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
41
+  (0.1ms) select sqlite_version(*)
42
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
43
+  (0.1ms) SELECT version FROM "schema_migrations"
44
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
45
+  (9.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
46
+  (0.1ms) select sqlite_version(*)
47
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
48
+  (0.1ms) SELECT version FROM "schema_migrations"
49
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
50
+
51
+
52
+ Started GET "/" for 127.0.0.1 at 2015-10-26 16:46:48 +0100
53
+ Processing by Rails::WelcomeController#index as HTML
54
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/railties-4.2.4/lib/rails/templates/rails/welcome/index.html.erb (24.7ms)
55
+ Completed 200 OK in 127ms (Views: 115.4ms | ActiveRecord: 0.0ms)
56
+
57
+
58
+ Started GET "/enpoint" for 127.0.0.1 at 2015-10-26 16:46:58 +0100
59
+
60
+ ActionController::RoutingError (No route matches [GET] "/enpoint"):
61
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
62
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
63
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
64
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
65
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
66
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
67
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
68
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
69
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
70
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
71
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
72
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
73
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
74
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
75
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
76
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
77
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
78
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
79
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
80
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
81
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
82
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
83
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
84
+
85
+
86
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
87
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms)
88
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
89
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.3ms)
90
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.5ms)
91
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (217.3ms)
92
+
93
+
94
+ Started GET "/enpoint.json" for 127.0.0.1 at 2015-10-26 16:47:13 +0100
95
+
96
+ ActionController::RoutingError (No route matches [GET] "/enpoint.json"):
97
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
98
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
99
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
100
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
101
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
102
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
103
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
104
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
105
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
106
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
107
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
108
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
109
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
110
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
111
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
112
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
113
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
114
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
115
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
116
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
117
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
118
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
119
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
120
+
121
+
122
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
123
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
124
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
125
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
126
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
127
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (220.6ms)
128
+
129
+
130
+ Started GET "/cangaroo/enpoint.json" for 127.0.0.1 at 2015-10-26 16:47:22 +0100
131
+
132
+ ActionController::RoutingError (No route matches [GET] "/cangaroo/enpoint.json"):
133
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
134
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
135
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
136
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
137
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
138
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
139
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
140
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
141
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
142
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
143
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
144
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
145
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
146
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
147
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
148
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
149
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
150
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
151
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
152
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
153
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
154
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
155
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
156
+
157
+
158
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
159
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
160
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
161
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
162
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
163
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (155.6ms)
164
+
165
+
166
+ Started GET "/enpoint.json" for 127.0.0.1 at 2015-10-26 16:47:27 +0100
167
+
168
+ ActionController::RoutingError (No route matches [GET] "/enpoint.json"):
169
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
170
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
171
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
172
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
173
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
174
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
175
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
176
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
177
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
178
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
179
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
180
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
181
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
182
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
183
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
184
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
185
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
186
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
187
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
188
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
189
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
190
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
191
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
192
+
193
+
194
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
195
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms)
196
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
197
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms)
198
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
199
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (184.2ms)
200
+
201
+
202
+ Started GET "/endpoint" for 127.0.0.1 at 2015-10-26 16:47:38 +0100
203
+
204
+ ActionController::RoutingError (No route matches [GET] "/endpoint"):
205
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
206
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
207
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
208
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
209
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
210
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
211
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
212
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
213
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
214
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
215
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
216
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
217
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
218
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
219
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
220
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
221
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
222
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
223
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
224
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
225
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
226
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
227
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
228
+
229
+
230
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
231
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
232
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
233
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
234
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.4ms)
235
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (198.0ms)
236
+  (9.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
237
+  (0.1ms) select sqlite_version(*)
238
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
+  (0.2ms) SELECT version FROM "schema_migrations"
240
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
241
+
242
+
243
+ Started GET "/cangaroo" for 127.0.0.1 at 2015-10-26 16:51:10 +0100
244
+
245
+ ActionController::RoutingError (No route matches [GET] "/cangaroo"):
246
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
247
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
248
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
249
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
250
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
251
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
252
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
253
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
254
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
255
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
256
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
257
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
258
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
259
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
260
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
261
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
262
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
263
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
264
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
265
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
266
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
267
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
268
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
269
+
270
+
271
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
272
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
273
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
274
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
275
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
276
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.3ms)
277
+
278
+
279
+ Started GET "/cangaroo/endpoint" for 127.0.0.1 at 2015-10-26 16:51:14 +0100
280
+
281
+ AbstractController::ActionNotFound (The action 'index' could not be found for Cangaroo::EndpointController):
282
+ actionpack (4.2.4) lib/abstract_controller/base.rb:132:in `process'
283
+ actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
284
+ actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
285
+ actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
286
+ actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
287
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
288
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
289
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
290
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
291
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
292
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
293
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
294
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
295
+ railties (4.2.4) lib/rails/railtie.rb:194:in `public_send'
296
+ railties (4.2.4) lib/rails/railtie.rb:194:in `method_missing'
297
+ actionpack (4.2.4) lib/action_dispatch/routing/mapper.rb:51:in `serve'
298
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
299
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
300
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
301
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
302
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
303
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
304
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
305
+ actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
306
+ actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
307
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
308
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
309
+ actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
310
+ activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
311
+ activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
312
+ activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
313
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
314
+ activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
315
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
316
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
317
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
318
+ actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
319
+ actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
320
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
321
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
322
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
323
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
324
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
325
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
326
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
327
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
328
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
329
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
330
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
331
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
332
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
333
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
334
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
335
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
336
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
337
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
338
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
339
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
340
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
341
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
342
+ /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
343
+
344
+
345
+ Rendered /Users/alessio/.rbenv/versions/2.2.0/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.5ms)
346
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
347
+  (0.4ms) select sqlite_version(*)
348
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
349
+  (0.2ms) SELECT version FROM "schema_migrations"
350
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
351
+  (9.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
352
+  (0.1ms) select sqlite_version(*)
353
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
354
+  (0.1ms) SELECT version FROM "schema_migrations"
355
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
356
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
357
+  (0.1ms) select sqlite_version(*)
358
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
359
+  (0.1ms) SELECT version FROM "schema_migrations"
360
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
361
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
362
+  (0.1ms) select sqlite_version(*)
363
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
364
+  (0.1ms) SELECT version FROM "schema_migrations"
365
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
366
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
367
+  (0.1ms) select sqlite_version(*)
368
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
369
+  (0.1ms) SELECT version FROM "schema_migrations"
370
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
371
+  (8.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
372
+  (0.1ms) select sqlite_version(*)
373
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
374
+  (0.2ms) SELECT version FROM "schema_migrations"
375
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
376
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
377
+  (0.1ms) select sqlite_version(*)
378
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
379
+  (0.2ms) SELECT version FROM "schema_migrations"
380
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
381
+  (8.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
382
+  (0.1ms) select sqlite_version(*)
383
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
384
+  (0.1ms) SELECT version FROM "schema_migrations"
385
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
386
+  (9.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
387
+  (0.1ms) select sqlite_version(*)
388
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
389
+  (0.1ms) SELECT version FROM "schema_migrations"
390
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
391
+  (8.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
392
+  (0.1ms) select sqlite_version(*)
393
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
394
+  (0.2ms) SELECT version FROM "schema_migrations"
395
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
396
+  (8.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
397
+  (0.1ms) select sqlite_version(*)
398
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
399
+  (0.1ms) SELECT version FROM "schema_migrations"
400
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
401
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
402
+  (0.1ms) select sqlite_version(*)
403
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
404
+  (0.2ms) SELECT version FROM "schema_migrations"
405
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
406
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
407
+  (0.1ms) select sqlite_version(*)
408
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
409
+  (0.1ms) SELECT version FROM "schema_migrations"
410
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
411
+  (8.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
412
+  (0.1ms) select sqlite_version(*)
413
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
414
+  (0.4ms) SELECT version FROM "schema_migrations"
415
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
416
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
417
+  (0.1ms) select sqlite_version(*)
418
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
419
+  (0.1ms) SELECT version FROM "schema_migrations"
420
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
421
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
422
+  (0.2ms) select sqlite_version(*)
423
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
424
+  (0.1ms) SELECT version FROM "schema_migrations"
425
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
426
+  (9.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
427
+  (0.1ms) select sqlite_version(*)
428
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
429
+  (0.1ms) SELECT version FROM "schema_migrations"
430
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
431
+  (8.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
432
+  (0.2ms) select sqlite_version(*)
433
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
434
+  (0.1ms) SELECT version FROM "schema_migrations"
435
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
436
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
437
+  (0.1ms) select sqlite_version(*)
438
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
439
+  (0.1ms) SELECT version FROM "schema_migrations"
440
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
441
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
442
+  (0.1ms) select sqlite_version(*)
443
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
444
+  (0.1ms) SELECT version FROM "schema_migrations"
445
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
446
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
447
+  (0.1ms) select sqlite_version(*)
448
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
449
+  (0.1ms) SELECT version FROM "schema_migrations"
450
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
451
+  (9.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
452
+  (0.1ms) select sqlite_version(*)
453
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
454
+  (0.1ms) SELECT version FROM "schema_migrations"
455
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
456
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
457
+  (0.1ms) select sqlite_version(*)
458
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
459
+  (0.2ms) SELECT version FROM "schema_migrations"
460
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
461
+  (8.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
462
+  (0.1ms) select sqlite_version(*)
463
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
464
+  (0.1ms) SELECT version FROM "schema_migrations"
465
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
466
+  (9.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
467
+  (0.1ms) select sqlite_version(*)
468
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
469
+  (0.1ms) SELECT version FROM "schema_migrations"
470
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
471
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
472
+  (0.1ms) select sqlite_version(*)
473
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
474
+  (0.1ms) SELECT version FROM "schema_migrations"
475
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
476
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
477
+  (0.1ms) select sqlite_version(*)
478
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
479
+  (0.1ms) SELECT version FROM "schema_migrations"
480
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
481
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
482
+  (0.0ms) select sqlite_version(*)
483
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
484
+  (0.1ms) SELECT version FROM "schema_migrations"
485
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
486
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
487
+  (0.1ms) select sqlite_version(*)
488
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
489
+  (0.1ms) SELECT version FROM "schema_migrations"
490
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
491
+  (8.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
492
+  (0.1ms) select sqlite_version(*)
493
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
494
+  (0.1ms) SELECT version FROM "schema_migrations"
495
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
496
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
497
+  (0.1ms) select sqlite_version(*)
498
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
499
+  (0.1ms) SELECT version FROM "schema_migrations"
500
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
501
+  (17.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
502
+  (0.2ms) select sqlite_version(*)
503
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
504
+  (0.1ms) SELECT version FROM "schema_migrations"
505
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
506
+  (17.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
507
+  (0.1ms) select sqlite_version(*)
508
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
509
+  (0.1ms) SELECT version FROM "schema_migrations"
510
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
511
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
512
+  (0.1ms) select sqlite_version(*)
513
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
514
+  (0.1ms) SELECT version FROM "schema_migrations"
515
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
516
+  (9.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
517
+  (0.1ms) select sqlite_version(*)
518
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
519
+  (0.3ms) SELECT version FROM "schema_migrations"
520
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
521
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
522
+  (0.1ms) select sqlite_version(*)
523
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
524
+  (0.1ms) SELECT version FROM "schema_migrations"
525
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
526
+  (9.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
527
+  (0.1ms) select sqlite_version(*)
528
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
529
+  (0.1ms) SELECT version FROM "schema_migrations"
530
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
531
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
532
+  (0.1ms) select sqlite_version(*)
533
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
534
+  (0.1ms) SELECT version FROM "schema_migrations"
535
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
536
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
537
+  (0.1ms) select sqlite_version(*)
538
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
539
+  (0.2ms) SELECT version FROM "schema_migrations"
540
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
541
+  (9.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
542
+  (0.1ms) select sqlite_version(*)
543
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
544
+  (0.1ms) SELECT version FROM "schema_migrations"
545
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
546
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
547
+  (0.1ms) select sqlite_version(*)
548
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
549
+  (0.1ms) SELECT version FROM "schema_migrations"
550
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
551
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
552
+  (0.1ms) select sqlite_version(*)
553
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
554
+  (0.2ms) SELECT version FROM "schema_migrations"
555
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
556
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
557
+  (0.1ms) select sqlite_version(*)
558
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
559
+  (0.1ms) SELECT version FROM "schema_migrations"
560
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
561
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
562
+  (0.1ms) select sqlite_version(*)
563
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
564
+  (0.2ms) SELECT version FROM "schema_migrations"
565
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
566
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
567
+  (0.1ms) select sqlite_version(*)
568
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
569
+  (0.1ms) SELECT version FROM "schema_migrations"
570
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
571
+  (9.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
572
+  (0.1ms) select sqlite_version(*)
573
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
574
+  (0.1ms) SELECT version FROM "schema_migrations"
575
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
576
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
577
+  (0.1ms) select sqlite_version(*)
578
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
579
+  (0.1ms) SELECT version FROM "schema_migrations"
580
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
581
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
582
+  (0.1ms) select sqlite_version(*)
583
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
584
+  (0.1ms) SELECT version FROM "schema_migrations"
585
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
586
+  (9.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
587
+  (0.1ms) select sqlite_version(*)
588
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
589
+  (0.1ms) SELECT version FROM "schema_migrations"
590
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
591
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
592
+  (0.1ms) select sqlite_version(*)
593
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
594
+  (0.1ms) SELECT version FROM "schema_migrations"
595
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
596
+  (8.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
597
+  (0.1ms) select sqlite_version(*)
598
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
599
+  (0.2ms) SELECT version FROM "schema_migrations"
600
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
601
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
602
+ Migrating to CreateCangarooItems (20151028135022)
603
+  (0.1ms) begin transaction
604
+  (0.1ms) rollback transaction
605
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
606
+ Migrating to CreateCangarooItems (20151028135022)
607
+  (0.1ms) begin transaction
608
+  (0.5ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
609
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151028135022"]]
610
+  (0.8ms) commit transaction
611
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
612
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
613
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
614
+  (1.2ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
615
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
616
+  (0.1ms) select sqlite_version(*)
617
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
618
+  (0.1ms) SELECT version FROM "schema_migrations"
619
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
620
+  (4.7ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
621
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
622
+  (0.1ms) select sqlite_version(*)
623
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
624
+  (0.1ms) SELECT version FROM "schema_migrations"
625
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
626
+  (9.2ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
627
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
628
+  (0.1ms) select sqlite_version(*)
629
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
630
+  (0.1ms) SELECT version FROM "schema_migrations"
631
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
632
+  (9.1ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
633
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
634
+  (0.1ms) select sqlite_version(*)
635
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
636
+  (0.1ms) SELECT version FROM "schema_migrations"
637
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
638
+  (9.1ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
639
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
640
+  (0.1ms) select sqlite_version(*)
641
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
642
+  (0.1ms) SELECT version FROM "schema_migrations"
643
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
644
+  (9.3ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
645
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
646
+  (0.1ms) select sqlite_version(*)
647
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
648
+  (0.1ms) SELECT version FROM "schema_migrations"
649
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
650
+  (8.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
651
+  (0.1ms) select sqlite_version(*)
652
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
653
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
654
+ Migrating to CreateCangarooItems (20151028135022)
655
+  (0.1ms) begin transaction
656
+  (0.4ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
657
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151028135022"]]
658
+  (0.7ms) commit transaction
659
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
660
+  (9.3ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
661
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
662
+  (0.1ms) select sqlite_version(*)
663
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
664
+  (0.1ms) SELECT version FROM "schema_migrations"
665
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
666
+  (9.3ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
667
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
668
+  (0.1ms) select sqlite_version(*)
669
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
670
+  (0.1ms) SELECT version FROM "schema_migrations"
671
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
672
+  (9.3ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
673
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
674
+  (0.1ms) select sqlite_version(*)
675
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
676
+  (0.1ms) SELECT version FROM "schema_migrations"
677
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
678
+  (8.7ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
679
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
680
+  (0.3ms) select sqlite_version(*)
681
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
682
+  (0.1ms) SELECT version FROM "schema_migrations"
683
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
684
+  (9.3ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
685
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
686
+  (0.1ms) select sqlite_version(*)
687
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
688
+  (0.1ms) SELECT version FROM "schema_migrations"
689
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
690
+  (9.4ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
691
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
692
+  (0.1ms) select sqlite_version(*)
693
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
694
+  (0.1ms) SELECT version FROM "schema_migrations"
695
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
696
+  (9.2ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
697
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
698
+  (0.1ms) select sqlite_version(*)
699
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
700
+  (0.1ms) SELECT version FROM "schema_migrations"
701
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
702
+  (1.1ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
703
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
704
+  (0.1ms) select sqlite_version(*)
705
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
706
+  (0.1ms) SELECT version FROM "schema_migrations"
707
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
708
+  (8.6ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
709
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
710
+  (0.1ms) select sqlite_version(*)
711
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
712
+  (0.1ms) SELECT version FROM "schema_migrations"
713
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
714
+  (9.6ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
715
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
716
+  (0.1ms) select sqlite_version(*)
717
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
718
+  (0.1ms) SELECT version FROM "schema_migrations"
719
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
720
+  (8.1ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
721
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
722
+  (0.1ms) select sqlite_version(*)
723
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
724
+  (0.1ms) SELECT version FROM "schema_migrations"
725
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
726
+  (8.7ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
727
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
728
+  (0.1ms) select sqlite_version(*)
729
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
730
+  (0.1ms) SELECT version FROM "schema_migrations"
731
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
732
+  (8.4ms) CREATE TABLE "cangaroo_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar, "item_id" varchar, "payload" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
733
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
734
+  (0.1ms) select sqlite_version(*)
735
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
736
+  (0.1ms) SELECT version FROM "schema_migrations"
737
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
738
+  (4.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
739
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
740
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
741
+ Migrating to CreateCangarooItems (20151028135022)
742
+  (0.1ms) BEGIN
743
+  (5.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
744
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
745
+  (0.4ms) COMMIT
746
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
747
+  (3.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
748
+ FROM pg_constraint c
749
+ JOIN pg_class t1 ON c.conrelid = t1.oid
750
+ JOIN pg_class t2 ON c.confrelid = t2.oid
751
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
752
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
753
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
754
+ WHERE c.contype = 'f'
755
+ AND t1.relname = 'cangaroo_items'
756
+ AND t3.nspname = ANY (current_schemas(false))
757
+ ORDER BY c.conname
758
+ 
759
+  (122.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
760
+  (253.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
761
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
762
+  (6.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
763
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
764
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
765
+  (0.3ms) SELECT version FROM "schema_migrations"
766
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
767
+  (116.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
768
+  (384.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
769
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
770
+  (5.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
771
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
772
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
773
+  (0.3ms) SELECT version FROM "schema_migrations"
774
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
775
+  (122.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
776
+  (391.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
777
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
778
+  (5.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
779
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
780
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
781
+  (0.4ms) SELECT version FROM "schema_migrations"
782
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
783
+  (120.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
784
+  (247.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
785
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
786
+  (4.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
787
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
788
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
789
+  (0.2ms) SELECT version FROM "schema_migrations"
790
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
791
+  (122.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
792
+  (242.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
793
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
794
+  (4.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
795
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
796
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
797
+  (0.2ms) SELECT version FROM "schema_migrations"
798
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
799
+  (120.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
800
+  (247.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
801
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
802
+  (4.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
803
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
804
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
805
+  (0.3ms) SELECT version FROM "schema_migrations"
806
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
807
+  (119.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
808
+  (247.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
809
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
810
+  (5.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
811
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
812
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
813
+  (0.5ms) SELECT version FROM "schema_migrations"
814
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
815
+  (119.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
816
+  (245.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
817
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
818
+  (5.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
819
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
820
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
821
+  (0.3ms) SELECT version FROM "schema_migrations"
822
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
823
+  (121.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
824
+  (248.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
825
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
826
+  (4.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
827
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
828
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
829
+  (0.3ms) SELECT version FROM "schema_migrations"
830
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
831
+  (120.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
832
+  (241.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
833
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
834
+  (21.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
835
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
836
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
837
+  (0.3ms) SELECT version FROM "schema_migrations"
838
+  (20.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
839
+  (121.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
840
+  (249.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
841
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
842
+  (4.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
843
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
844
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
845
+  (0.4ms) SELECT version FROM "schema_migrations"
846
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
847
+  (115.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
848
+  (248.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
849
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
850
+  (4.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
851
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
852
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
853
+  (0.3ms) SELECT version FROM "schema_migrations"
854
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
855
+  (122.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
856
+  (249.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
857
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
858
+  (8.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
859
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
860
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
861
+  (0.4ms) SELECT version FROM "schema_migrations"
862
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
863
+  (121.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
864
+  (249.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
865
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
866
+  (4.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
867
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
868
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
869
+  (0.3ms) SELECT version FROM "schema_migrations"
870
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
871
+  (120.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
872
+  (245.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
873
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
874
+  (4.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
875
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
876
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
877
+  (0.3ms) SELECT version FROM "schema_migrations"
878
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
879
+  (122.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
880
+  (254.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
881
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
882
+  (5.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
883
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
884
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
885
+  (0.3ms) SELECT version FROM "schema_migrations"
886
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
887
+  (0.1ms) BEGIN
888
+ Cangaroo::Item Exists (0.8ms) SELECT 1 AS one FROM "cangaroo_items" WHERE ("cangaroo_items"."item_id" = 'R154085346172' AND "cangaroo_items"."item_type" = 'order') LIMIT 1
889
+  (0.1ms) ROLLBACK
890
+  (119.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
891
+  (399.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
892
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
893
+  (6.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
894
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
895
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
896
+  (0.3ms) SELECT version FROM "schema_migrations"
897
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
898
+  (121.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
899
+  (247.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
900
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
901
+  (5.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
902
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
903
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
904
+  (0.3ms) SELECT version FROM "schema_migrations"
905
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
906
+  (121.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
907
+  (251.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
908
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
909
+  (4.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
910
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
911
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
912
+  (0.2ms) SELECT version FROM "schema_migrations"
913
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
914
+  (122.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
915
+  (395.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
916
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
917
+  (8.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
918
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
919
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
920
+  (0.3ms) SELECT version FROM "schema_migrations"
921
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
922
+  (115.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
923
+  (240.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
924
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
925
+  (4.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
926
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
927
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
928
+  (0.3ms) SELECT version FROM "schema_migrations"
929
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
930
+  (121.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
931
+  (253.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
932
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
933
+  (4.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
934
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
935
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
936
+  (0.3ms) SELECT version FROM "schema_migrations"
937
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
938
+  (121.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
939
+  (383.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
940
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
941
+  (4.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
942
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
943
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
944
+  (0.2ms) SELECT version FROM "schema_migrations"
945
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
946
+  (122.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
947
+  (399.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
948
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
949
+  (5.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
950
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
951
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
952
+  (0.3ms) SELECT version FROM "schema_migrations"
953
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
954
+  (126.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
955
+  (401.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
956
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
957
+  (4.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
958
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
959
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
960
+  (0.3ms) SELECT version FROM "schema_migrations"
961
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
962
+  (123.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
963
+  (241.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
964
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
965
+  (4.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
966
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
967
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
968
+  (0.3ms) SELECT version FROM "schema_migrations"
969
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
970
+  (120.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
971
+  (467.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
972
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
973
+  (6.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
974
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
975
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
976
+  (0.3ms) SELECT version FROM "schema_migrations"
977
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
978
+  (123.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
979
+  (390.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
980
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
981
+  (7.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
982
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
983
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
984
+  (0.4ms) SELECT version FROM "schema_migrations"
985
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
986
+  (122.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
987
+  (391.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
988
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
989
+  (5.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
990
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
991
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
992
+  (0.7ms) SELECT version FROM "schema_migrations"
993
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
994
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
995
+ Migrating to CreateCangarooConnections (20151028172151)
996
+  (0.1ms) BEGIN
997
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
998
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
999
+  (0.6ms) COMMIT
1000
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1001
+  (3.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1002
+ FROM pg_constraint c
1003
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1004
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1005
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1006
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1007
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1008
+ WHERE c.contype = 'f'
1009
+ AND t1.relname = 'cangaroo_connections'
1010
+ AND t3.nspname = ANY (current_schemas(false))
1011
+ ORDER BY c.conname
1012
+ 
1013
+  (2.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1014
+ FROM pg_constraint c
1015
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1016
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1017
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1018
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1019
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1020
+ WHERE c.contype = 'f'
1021
+ AND t1.relname = 'cangaroo_items'
1022
+ AND t3.nspname = ANY (current_schemas(false))
1023
+ ORDER BY c.conname
1024
+
1025
+ Cangaroo::Item Load (0.7ms) SELECT "cangaroo_items".* FROM "cangaroo_items" ORDER BY "cangaroo_items"."id" ASC LIMIT 1
1026
+ Cangaroo::Item Load (0.5ms) SELECT "cangaroo_items".* FROM "cangaroo_items" ORDER BY "cangaroo_items"."id" ASC LIMIT 1
1027
+ Cangaroo::Item Load (0.4ms) SELECT "cangaroo_items".* FROM "cangaroo_items" ORDER BY "cangaroo_items"."id" ASC LIMIT 1
1028
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1029
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1030
+  (2.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1031
+ FROM pg_constraint c
1032
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1033
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1034
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1035
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1036
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1037
+ WHERE c.contype = 'f'
1038
+ AND t1.relname = 'cangaroo_connections'
1039
+ AND t3.nspname = ANY (current_schemas(false))
1040
+ ORDER BY c.conname
1041
+ 
1042
+  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1043
+ FROM pg_constraint c
1044
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1045
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1046
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1047
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1048
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1049
+ WHERE c.contype = 'f'
1050
+ AND t1.relname = 'cangaroo_items'
1051
+ AND t3.nspname = ANY (current_schemas(false))
1052
+ ORDER BY c.conname
1053
+
1054
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1055
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1056
+  (2.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1057
+ FROM pg_constraint c
1058
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1059
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1060
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1061
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1062
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1063
+ WHERE c.contype = 'f'
1064
+ AND t1.relname = 'cangaroo_connections'
1065
+ AND t3.nspname = ANY (current_schemas(false))
1066
+ ORDER BY c.conname
1067
+ 
1068
+  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1069
+ FROM pg_constraint c
1070
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1071
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1072
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1073
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1074
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1075
+ WHERE c.contype = 'f'
1076
+ AND t1.relname = 'cangaroo_items'
1077
+ AND t3.nspname = ANY (current_schemas(false))
1078
+ ORDER BY c.conname
1079
+
1080
+  (126.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1081
+  (399.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1082
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1083
+  (5.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1084
+  (2.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1085
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1086
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1087
+  (0.4ms) SELECT version FROM "schema_migrations"
1088
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1089
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1090
+  (125.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
1091
+  (393.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1092
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1093
+  (5.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1094
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1095
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1096
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1097
+  (0.3ms) SELECT version FROM "schema_migrations"
1098
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1099
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1100
+  (117.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1101
+  (403.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1102
+ SQL (1.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1103
+  (7.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1104
+  (3.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1105
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1106
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1107
+  (0.4ms) SELECT version FROM "schema_migrations"
1108
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1109
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1110
+ ActiveRecord::SchemaMigration Load (2.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1111
+ Migrating to AddConnectionToCanagarooItem (20151030084053)
1112
+  (0.1ms) BEGIN
1113
+  (1.6ms) ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1114
+ PG::UndefinedTable: ERROR: relation "canagaroo_items" does not exist
1115
+ : ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1116
+  (0.2ms) ROLLBACK
1117
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1118
+ Migrating to AddConnectionToCangarooItem (20151030084053)
1119
+  (0.1ms) BEGIN
1120
+  (23.0ms) ALTER TABLE "cangaroo_items" ADD "connection_id" integer
1121
+  (5.1ms) CREATE INDEX "index_cangaroo_items_on_connection_id" ON "cangaroo_items" ("connection_id")
1122
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_6f3860846c"
1123
+ FOREIGN KEY ("connection_id")
1124
+ REFERENCES "connections" ("id")
1125
+ 
1126
+ PG::UndefinedTable: ERROR: relation "connections" does not exist
1127
+ : ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_6f3860846c"
1128
+ FOREIGN KEY ("connection_id")
1129
+ REFERENCES "connections" ("id")
1130
+
1131
+  (0.1ms) ROLLBACK
1132
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1133
+ Migrating to AddConnectionToCangarooItem (20151030084053)
1134
+  (0.1ms) BEGIN
1135
+  (0.7ms) ALTER TABLE "cangaroo_items" ADD "connection_id" integer
1136
+  (8.8ms) CREATE INDEX "index_cangaroo_items_on_connection_id" ON "cangaroo_items" ("connection_id")
1137
+  (0.9ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_6f3860846c"
1138
+ FOREIGN KEY ("connection_id")
1139
+ REFERENCES "connections" ("id")
1140
+ 
1141
+ PG::UndefinedTable: ERROR: relation "connections" does not exist
1142
+ : ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_6f3860846c"
1143
+ FOREIGN KEY ("connection_id")
1144
+ REFERENCES "connections" ("id")
1145
+
1146
+  (0.1ms) ROLLBACK
1147
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1148
+ Migrating to AddConnectionToCangarooItem (20151030084053)
1149
+  (0.1ms) BEGIN
1150
+  (0.8ms) ALTER TABLE "cangaroo_items" ADD "cangaroo_connection_id" integer
1151
+  (8.7ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" ("cangaroo_connection_id")
1152
+  (18.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1153
+ FOREIGN KEY ("cangaroo_connection_id")
1154
+ REFERENCES "cangaroo_connections" ("id")
1155
+ 
1156
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030084053"]]
1157
+  (0.4ms) COMMIT
1158
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1159
+  (2.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1160
+ FROM pg_constraint c
1161
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1162
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1163
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1164
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1165
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1166
+ WHERE c.contype = 'f'
1167
+ AND t1.relname = 'cangaroo_connections'
1168
+ AND t3.nspname = ANY (current_schemas(false))
1169
+ ORDER BY c.conname
1170
+ 
1171
+  (1.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1172
+ FROM pg_constraint c
1173
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1174
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1175
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1176
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1177
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1178
+ WHERE c.contype = 'f'
1179
+ AND t1.relname = 'cangaroo_items'
1180
+ AND t3.nspname = ANY (current_schemas(false))
1181
+ ORDER BY c.conname
1182
+
1183
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1184
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1185
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1186
+ Migrating to CreateCangarooItems (20151028135022)
1187
+  (0.1ms) BEGIN
1188
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1189
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
1190
+  (0.4ms) COMMIT
1191
+ Migrating to CreateCangarooConnections (20151028172151)
1192
+  (0.2ms) BEGIN
1193
+  (2.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1194
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
1195
+  (0.4ms) COMMIT
1196
+ Migrating to AddConnectionToCangarooItem (20151030084053)
1197
+  (0.2ms) BEGIN
1198
+  (0.3ms) ALTER TABLE "cangaroo_items" ADD "cangaroo_connection_id" integer
1199
+  (0.7ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" ("cangaroo_connection_id")
1200
+  (5.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1201
+ FOREIGN KEY ("cangaroo_connection_id")
1202
+ REFERENCES "cangaroo_connections" ("id")
1203
+ 
1204
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030084053"]]
1205
+  (0.5ms) COMMIT
1206
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1207
+  (3.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1208
+ FROM pg_constraint c
1209
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1210
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1211
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1212
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1213
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1214
+ WHERE c.contype = 'f'
1215
+ AND t1.relname = 'cangaroo_connections'
1216
+ AND t3.nspname = ANY (current_schemas(false))
1217
+ ORDER BY c.conname
1218
+ 
1219
+  (2.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1220
+ FROM pg_constraint c
1221
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1222
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1223
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1224
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1225
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1226
+ WHERE c.contype = 'f'
1227
+ AND t1.relname = 'cangaroo_items'
1228
+ AND t3.nspname = ANY (current_schemas(false))
1229
+ ORDER BY c.conname
1230
+
1231
+  (0.2ms) BEGIN
1232
+ Cangaroo::Item Exists (0.9ms) SELECT 1 AS one FROM "cangaroo_items" WHERE ("cangaroo_items"."item_id" IS NULL AND "cangaroo_items"."item_type" IS NULL) LIMIT 1
1233
+  (2.6ms) ROLLBACK
1234
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1235
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1236
+  (3.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1237
+ FROM pg_constraint c
1238
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1239
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1240
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1241
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1242
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1243
+ WHERE c.contype = 'f'
1244
+ AND t1.relname = 'cangaroo_connections'
1245
+ AND t3.nspname = ANY (current_schemas(false))
1246
+ ORDER BY c.conname
1247
+ 
1248
+  (2.0ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1249
+ FROM pg_constraint c
1250
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1251
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1252
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1253
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1254
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1255
+ WHERE c.contype = 'f'
1256
+ AND t1.relname = 'cangaroo_items'
1257
+ AND t3.nspname = ANY (current_schemas(false))
1258
+ ORDER BY c.conname
1259
+
1260
+  (3.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1261
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1262
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1263
+ Migrating to CreateCangarooItems (20151028135022)
1264
+  (0.2ms) BEGIN
1265
+  (3.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1266
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
1267
+  (0.4ms) COMMIT
1268
+ Migrating to CreateCangarooConnections (20151028172151)
1269
+  (0.2ms) BEGIN
1270
+  (3.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1271
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
1272
+  (0.4ms) COMMIT
1273
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1274
+  (2.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1275
+ FROM pg_constraint c
1276
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1277
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1278
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1279
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1280
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1281
+ WHERE c.contype = 'f'
1282
+ AND t1.relname = 'cangaroo_connections'
1283
+ AND t3.nspname = ANY (current_schemas(false))
1284
+ ORDER BY c.conname
1285
+ 
1286
+  (2.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1287
+ FROM pg_constraint c
1288
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1289
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1290
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1291
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1292
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1293
+ WHERE c.contype = 'f'
1294
+ AND t1.relname = 'cangaroo_items'
1295
+ AND t3.nspname = ANY (current_schemas(false))
1296
+ ORDER BY c.conname
1297
+
1298
+  (124.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
1299
+  (428.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1300
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1301
+  (5.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1302
+  (4.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1303
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1304
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1305
+  (0.2ms) SELECT version FROM "schema_migrations"
1306
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1307
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1308
+  (116.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
1309
+  (248.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1310
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1311
+  (3.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1312
+  (2.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1313
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1314
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1315
+  (0.3ms) SELECT version FROM "schema_migrations"
1316
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1317
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1318
+  (122.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
1319
+  (250.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1320
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1321
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1322
+  (2.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1323
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1324
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1325
+  (0.3ms) SELECT version FROM "schema_migrations"
1326
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1327
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1328
+  (124.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
1329
+  (253.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1330
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1331
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
1332
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1333
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1334
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1335
+  (0.3ms) SELECT version FROM "schema_migrations"
1336
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1337
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1338
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1339
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1340
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1341
+ Migrating to CreateCangarooItems (20151028135022)
1342
+  (0.1ms) BEGIN
1343
+  (3.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1344
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
1345
+  (0.4ms) COMMIT
1346
+ Migrating to CreateCangarooConnections (20151028172151)
1347
+  (0.2ms) BEGIN
1348
+  (2.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1349
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
1350
+  (0.4ms) COMMIT
1351
+ Migrating to AddParametersToCangarooConnection (20151030140821)
1352
+  (0.2ms) BEGIN
1353
+  (0.3ms) ALTER TABLE "cangaroo_connections" ADD "parameters" text
1354
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030140821"]]
1355
+  (0.4ms) COMMIT
1356
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1357
+  (2.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1358
+ FROM pg_constraint c
1359
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1360
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1361
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1362
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1363
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1364
+ WHERE c.contype = 'f'
1365
+ AND t1.relname = 'cangaroo_connections'
1366
+ AND t3.nspname = ANY (current_schemas(false))
1367
+ ORDER BY c.conname
1368
+ 
1369
+  (1.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1370
+ FROM pg_constraint c
1371
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1372
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1373
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1374
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1375
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1376
+ WHERE c.contype = 'f'
1377
+ AND t1.relname = 'cangaroo_items'
1378
+ AND t3.nspname = ANY (current_schemas(false))
1379
+ ORDER BY c.conname
1380
+
1381
+  (112.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
1382
+  (400.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1383
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1384
+  (5.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1385
+  (4.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1386
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1387
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1388
+  (0.4ms) SELECT version FROM "schema_migrations"
1389
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1390
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1391
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1392
+  (122.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1393
+  (410.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1394
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1395
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1396
+  (3.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1397
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1398
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1399
+  (0.3ms) SELECT version FROM "schema_migrations"
1400
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1401
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1402
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1403
+  (124.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
1404
+  (255.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1405
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1406
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1407
+  (2.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1408
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1409
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1410
+  (0.4ms) SELECT version FROM "schema_migrations"
1411
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1412
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1413
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1414
+  (124.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
1415
+  (251.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1416
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1417
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1418
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1419
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1420
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1421
+  (0.3ms) SELECT version FROM "schema_migrations"
1422
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1423
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1424
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1425
+  (124.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
1426
+  (251.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1427
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1428
+  (6.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1429
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1430
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1431
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1432
+  (0.3ms) SELECT version FROM "schema_migrations"
1433
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1434
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1435
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1436
+  (124.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1437
+  (251.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1438
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1439
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1440
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1441
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1442
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1443
+  (0.2ms) SELECT version FROM "schema_migrations"
1444
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1445
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1446
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1447
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1448
+ Migrating to AddConnectionToCanagarooItem (20151030171657)
1449
+  (0.1ms) BEGIN
1450
+  (1.1ms) ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1451
+ PG::UndefinedTable: ERROR: relation "canagaroo_items" does not exist
1452
+ : ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1453
+  (0.1ms) ROLLBACK
1454
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1455
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1456
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1457
+ Migrating to CreateCangarooItems (20151028135022)
1458
+  (0.1ms) BEGIN
1459
+  (3.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1460
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
1461
+  (0.4ms) COMMIT
1462
+ Migrating to CreateCangarooConnections (20151028172151)
1463
+  (0.2ms) BEGIN
1464
+  (2.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1465
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
1466
+  (0.4ms) COMMIT
1467
+ Migrating to AddParametersToCangarooConnection (20151030140821)
1468
+  (0.2ms) BEGIN
1469
+  (0.3ms) ALTER TABLE "cangaroo_connections" ADD "parameters" text
1470
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030140821"]]
1471
+  (0.3ms) COMMIT
1472
+ Migrating to AddConnectionToCanagarooItem (20151030171657)
1473
+  (0.1ms) BEGIN
1474
+  (0.3ms) ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1475
+ PG::UndefinedTable: ERROR: relation "canagaroo_items" does not exist
1476
+ : ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1477
+  (0.1ms) ROLLBACK
1478
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1479
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1480
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1481
+ Migrating to CreateCangarooItems (20151028135022)
1482
+  (0.1ms) BEGIN
1483
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1484
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
1485
+  (0.5ms) COMMIT
1486
+ Migrating to CreateCangarooConnections (20151028172151)
1487
+  (0.2ms) BEGIN
1488
+  (2.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1489
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
1490
+  (0.3ms) COMMIT
1491
+ Migrating to AddParametersToCangarooConnection (20151030140821)
1492
+  (0.2ms) BEGIN
1493
+  (0.2ms) ALTER TABLE "cangaroo_connections" ADD "parameters" text
1494
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030140821"]]
1495
+  (0.3ms) COMMIT
1496
+ Migrating to AddConnectionToCanagarooItem (20151030171657)
1497
+  (0.1ms) BEGIN
1498
+  (0.3ms) ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1499
+ PG::UndefinedTable: ERROR: relation "canagaroo_items" does not exist
1500
+ : ALTER TABLE "canagaroo_items" ADD "connection_id" integer
1501
+  (0.1ms) ROLLBACK
1502
+ Cangaroo::Item Load (1.2ms) SELECT "cangaroo_items".* FROM "cangaroo_items" ORDER BY "cangaroo_items"."id" DESC LIMIT 1
1503
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1504
+ Migrating to AddCangarooConnectionToCangarooItem (20151030171657)
1505
+  (0.1ms) BEGIN
1506
+  (1.0ms) ALTER TABLE "cangaroo_items" ADD "cangaroo_connection_id" integer
1507
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" ("cangaroo_connection_id")
1508
+  (3.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1509
+ FOREIGN KEY ("cangaroo_connection_id")
1510
+ REFERENCES "cangaroo_connections" ("id")
1511
+ 
1512
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030171657"]]
1513
+  (0.7ms) COMMIT
1514
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1515
+  (2.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1516
+ FROM pg_constraint c
1517
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1518
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1519
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1520
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1521
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1522
+ WHERE c.contype = 'f'
1523
+ AND t1.relname = 'cangaroo_connections'
1524
+ AND t3.nspname = ANY (current_schemas(false))
1525
+ ORDER BY c.conname
1526
+ 
1527
+  (2.0ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1528
+ FROM pg_constraint c
1529
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1530
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1531
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1532
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1533
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1534
+ WHERE c.contype = 'f'
1535
+ AND t1.relname = 'cangaroo_items'
1536
+ AND t3.nspname = ANY (current_schemas(false))
1537
+ ORDER BY c.conname
1538
+
1539
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
1540
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1541
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1542
+ Migrating to CreateCangarooItems (20151028135022)
1543
+  (0.1ms) BEGIN
1544
+  (4.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1545
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028135022"]]
1546
+  (0.4ms) COMMIT
1547
+ Migrating to CreateCangarooConnections (20151028172151)
1548
+  (0.2ms) BEGIN
1549
+  (2.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
1550
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
1551
+  (0.4ms) COMMIT
1552
+ Migrating to AddParametersToCangarooConnection (20151030140821)
1553
+  (0.2ms) BEGIN
1554
+  (0.3ms) ALTER TABLE "cangaroo_connections" ADD "parameters" text
1555
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030140821"]]
1556
+  (0.3ms) COMMIT
1557
+ Migrating to AddCangarooConnectionToCangarooItem (20151030171657)
1558
+  (0.1ms) BEGIN
1559
+  (0.3ms) ALTER TABLE "cangaroo_items" ADD "cangaroo_connection_id" integer
1560
+  (1.5ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" ("cangaroo_connection_id")
1561
+  (2.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1562
+ FOREIGN KEY ("cangaroo_connection_id")
1563
+ REFERENCES "cangaroo_connections" ("id")
1564
+ 
1565
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030171657"]]
1566
+  (0.6ms) COMMIT
1567
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1568
+  (2.0ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1569
+ FROM pg_constraint c
1570
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1571
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1572
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1573
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1574
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1575
+ WHERE c.contype = 'f'
1576
+ AND t1.relname = 'cangaroo_connections'
1577
+ AND t3.nspname = ANY (current_schemas(false))
1578
+ ORDER BY c.conname
1579
+ 
1580
+  (2.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
1581
+ FROM pg_constraint c
1582
+ JOIN pg_class t1 ON c.conrelid = t1.oid
1583
+ JOIN pg_class t2 ON c.confrelid = t2.oid
1584
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
1585
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
1586
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
1587
+ WHERE c.contype = 'f'
1588
+ AND t1.relname = 'cangaroo_items'
1589
+ AND t3.nspname = ANY (current_schemas(false))
1590
+ ORDER BY c.conname
1591
+
1592
+  (127.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
1593
+  (399.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1594
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1595
+  (5.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1596
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1597
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1598
+  (2.0ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1599
+ FOREIGN KEY ("cangaroo_connection_id")
1600
+ REFERENCES "cangaroo_connections" ("id")
1601
+ 
1602
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1603
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1604
+  (0.2ms) SELECT version FROM "schema_migrations"
1605
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1606
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1607
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1608
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1609
+  (123.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
1610
+  (256.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1611
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1612
+  (3.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1613
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1614
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1615
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1616
+ FOREIGN KEY ("cangaroo_connection_id")
1617
+ REFERENCES "cangaroo_connections" ("id")
1618
+ 
1619
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1620
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1621
+  (0.2ms) SELECT version FROM "schema_migrations"
1622
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1623
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1624
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1625
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1626
+  (123.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
1627
+  (262.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1628
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1629
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1630
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1631
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1632
+  (2.0ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1633
+ FOREIGN KEY ("cangaroo_connection_id")
1634
+ REFERENCES "cangaroo_connections" ("id")
1635
+ 
1636
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1637
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1638
+  (0.2ms) SELECT version FROM "schema_migrations"
1639
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1640
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1641
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1642
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1643
+  (121.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1644
+  (249.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1645
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1646
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1647
+  (3.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1648
+  (1.5ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1649
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1650
+ FOREIGN KEY ("cangaroo_connection_id")
1651
+ REFERENCES "cangaroo_connections" ("id")
1652
+ 
1653
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1654
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1655
+  (0.3ms) SELECT version FROM "schema_migrations"
1656
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1657
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1658
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1659
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1660
+  (122.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
1661
+  (250.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1662
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1663
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1664
+  (2.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1665
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1666
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1667
+ FOREIGN KEY ("cangaroo_connection_id")
1668
+ REFERENCES "cangaroo_connections" ("id")
1669
+ 
1670
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1671
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1672
+  (0.3ms) SELECT version FROM "schema_migrations"
1673
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1674
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1675
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1676
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1677
+  (133.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
1678
+  (391.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1679
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1680
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1681
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1682
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1683
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1684
+ FOREIGN KEY ("cangaroo_connection_id")
1685
+ REFERENCES "cangaroo_connections" ("id")
1686
+ 
1687
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1688
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1689
+  (0.4ms) SELECT version FROM "schema_migrations"
1690
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1691
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1692
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1693
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1694
+  (122.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
1695
+  (250.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1696
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1697
+  (5.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1698
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1699
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1700
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1701
+ FOREIGN KEY ("cangaroo_connection_id")
1702
+ REFERENCES "cangaroo_connections" ("id")
1703
+ 
1704
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1705
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1706
+  (0.4ms) SELECT version FROM "schema_migrations"
1707
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1708
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1709
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1710
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1711
+  (124.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
1712
+  (249.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1713
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1714
+  (5.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1715
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1716
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1717
+  (2.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1718
+ FOREIGN KEY ("cangaroo_connection_id")
1719
+ REFERENCES "cangaroo_connections" ("id")
1720
+ 
1721
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1722
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1723
+  (0.2ms) SELECT version FROM "schema_migrations"
1724
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1725
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1726
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1727
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1728
+  (124.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
1729
+  (245.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1730
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1731
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1732
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1733
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1734
+  (2.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1735
+ FOREIGN KEY ("cangaroo_connection_id")
1736
+ REFERENCES "cangaroo_connections" ("id")
1737
+ 
1738
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1739
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1740
+  (0.4ms) SELECT version FROM "schema_migrations"
1741
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1742
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1743
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1744
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1745
+  (123.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1746
+  (247.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1747
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1748
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1749
+  (3.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1750
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1751
+  (2.0ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1752
+ FOREIGN KEY ("cangaroo_connection_id")
1753
+ REFERENCES "cangaroo_connections" ("id")
1754
+ 
1755
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1756
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1757
+  (0.3ms) SELECT version FROM "schema_migrations"
1758
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1759
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1760
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1761
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1762
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
1763
+  (248.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1764
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1765
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1766
+  (3.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1767
+  (1.8ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1768
+  (2.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1769
+ FOREIGN KEY ("cangaroo_connection_id")
1770
+ REFERENCES "cangaroo_connections" ("id")
1771
+ 
1772
+  (8.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1773
+  (8.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1774
+  (0.6ms) SELECT version FROM "schema_migrations"
1775
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1776
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1777
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1778
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1779
+  (124.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
1780
+  (250.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1781
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1782
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1783
+  (3.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1784
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1785
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1786
+ FOREIGN KEY ("cangaroo_connection_id")
1787
+ REFERENCES "cangaroo_connections" ("id")
1788
+ 
1789
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1790
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1791
+  (0.3ms) SELECT version FROM "schema_migrations"
1792
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1793
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1794
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1795
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1796
+  (124.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
1797
+  (402.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1798
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1799
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1800
+  (2.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1801
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1802
+  (2.0ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1803
+ FOREIGN KEY ("cangaroo_connection_id")
1804
+ REFERENCES "cangaroo_connections" ("id")
1805
+ 
1806
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1807
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1808
+  (0.3ms) SELECT version FROM "schema_migrations"
1809
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1810
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1811
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1812
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1813
+  (126.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
1814
+  (427.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1815
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1816
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1817
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1818
+  (1.5ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1819
+  (3.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1820
+ FOREIGN KEY ("cangaroo_connection_id")
1821
+ REFERENCES "cangaroo_connections" ("id")
1822
+ 
1823
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1824
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1825
+  (0.2ms) SELECT version FROM "schema_migrations"
1826
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1827
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1828
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1829
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1830
+  (124.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
1831
+  (251.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1832
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1833
+  (5.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1834
+  (2.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1835
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1836
+  (2.0ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1837
+ FOREIGN KEY ("cangaroo_connection_id")
1838
+ REFERENCES "cangaroo_connections" ("id")
1839
+ 
1840
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1841
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1842
+  (0.2ms) SELECT version FROM "schema_migrations"
1843
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1844
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1845
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1846
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1847
+  (128.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
1848
+  (397.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1849
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1850
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1851
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1852
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1853
+  (2.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1854
+ FOREIGN KEY ("cangaroo_connection_id")
1855
+ REFERENCES "cangaroo_connections" ("id")
1856
+ 
1857
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1858
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1859
+  (0.4ms) SELECT version FROM "schema_migrations"
1860
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1861
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1862
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1863
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1864
+  (123.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
1865
+  (251.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1866
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1867
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1868
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1869
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1870
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1871
+ FOREIGN KEY ("cangaroo_connection_id")
1872
+ REFERENCES "cangaroo_connections" ("id")
1873
+ 
1874
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1875
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1876
+  (0.3ms) SELECT version FROM "schema_migrations"
1877
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1878
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1879
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1880
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1881
+  (126.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
1882
+  (404.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1883
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1884
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1885
+  (3.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1886
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1887
+  (2.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1888
+ FOREIGN KEY ("cangaroo_connection_id")
1889
+ REFERENCES "cangaroo_connections" ("id")
1890
+ 
1891
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1892
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1893
+  (0.2ms) SELECT version FROM "schema_migrations"
1894
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1895
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1896
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1897
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1898
+  (123.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
1899
+  (246.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1900
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1901
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1902
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1903
+  (1.4ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1904
+  (2.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1905
+ FOREIGN KEY ("cangaroo_connection_id")
1906
+ REFERENCES "cangaroo_connections" ("id")
1907
+ 
1908
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1909
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1910
+  (0.3ms) SELECT version FROM "schema_migrations"
1911
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1912
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1913
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1914
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1915
+  (128.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
1916
+  (519.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1917
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1918
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1919
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1920
+  (1.8ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1921
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1922
+ FOREIGN KEY ("cangaroo_connection_id")
1923
+ REFERENCES "cangaroo_connections" ("id")
1924
+ 
1925
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1926
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1927
+  (0.3ms) SELECT version FROM "schema_migrations"
1928
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1929
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1930
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1931
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1932
+  (127.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
1933
+  (419.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1934
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1935
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1936
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1937
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1938
+  (1.8ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1939
+ FOREIGN KEY ("cangaroo_connection_id")
1940
+ REFERENCES "cangaroo_connections" ("id")
1941
+ 
1942
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1943
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1944
+  (0.3ms) SELECT version FROM "schema_migrations"
1945
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1946
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1947
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1948
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1949
+  (125.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
1950
+  (429.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1951
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1952
+  (5.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1953
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1954
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1955
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1956
+ FOREIGN KEY ("cangaroo_connection_id")
1957
+ REFERENCES "cangaroo_connections" ("id")
1958
+ 
1959
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1960
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1961
+  (0.2ms) SELECT version FROM "schema_migrations"
1962
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1963
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1964
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1965
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1966
+  (112.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
1967
+  (247.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1968
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1969
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1970
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1971
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1972
+  (2.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1973
+ FOREIGN KEY ("cangaroo_connection_id")
1974
+ REFERENCES "cangaroo_connections" ("id")
1975
+ 
1976
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1977
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1978
+  (0.2ms) SELECT version FROM "schema_migrations"
1979
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1980
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1981
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1982
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
1983
+  (123.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
1984
+  (414.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
1985
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
1986
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
1987
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
1988
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
1989
+  (1.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
1990
+ FOREIGN KEY ("cangaroo_connection_id")
1991
+ REFERENCES "cangaroo_connections" ("id")
1992
+ 
1993
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
1994
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1995
+  (0.2ms) SELECT version FROM "schema_migrations"
1996
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
1997
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
1998
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
1999
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2000
+  (120.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2001
+  (386.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2002
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2003
+  (6.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2004
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2005
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2006
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2007
+ FOREIGN KEY ("cangaroo_connection_id")
2008
+ REFERENCES "cangaroo_connections" ("id")
2009
+ 
2010
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2011
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2012
+  (0.5ms) SELECT version FROM "schema_migrations"
2013
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2014
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2015
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2016
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2017
+  (125.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
2018
+  (499.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2019
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2020
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2021
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2022
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2023
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2024
+ FOREIGN KEY ("cangaroo_connection_id")
2025
+ REFERENCES "cangaroo_connections" ("id")
2026
+ 
2027
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2028
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2029
+  (0.3ms) SELECT version FROM "schema_migrations"
2030
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2031
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2032
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2033
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2034
+  (115.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
2035
+  (395.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2036
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2037
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2038
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2039
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2040
+  (1.9ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2041
+ FOREIGN KEY ("cangaroo_connection_id")
2042
+ REFERENCES "cangaroo_connections" ("id")
2043
+ 
2044
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2045
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2046
+  (0.3ms) SELECT version FROM "schema_migrations"
2047
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2048
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2049
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2050
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2051
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2052
+  (249.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2053
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2054
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2055
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2056
+  (1.4ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2057
+  (2.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2058
+ FOREIGN KEY ("cangaroo_connection_id")
2059
+ REFERENCES "cangaroo_connections" ("id")
2060
+ 
2061
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2062
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2063
+  (0.4ms) SELECT version FROM "schema_migrations"
2064
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2065
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2066
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2067
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2068
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2069
+  (252.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2070
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2071
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2072
+  (3.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2073
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2074
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2075
+ FOREIGN KEY ("cangaroo_connection_id")
2076
+ REFERENCES "cangaroo_connections" ("id")
2077
+ 
2078
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2079
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2080
+  (0.4ms) SELECT version FROM "schema_migrations"
2081
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2082
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2083
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2084
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2085
+  (128.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2086
+  (418.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2087
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2088
+  (5.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2089
+  (4.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2090
+  (2.8ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2091
+  (1.9ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2092
+ FOREIGN KEY ("cangaroo_connection_id")
2093
+ REFERENCES "cangaroo_connections" ("id")
2094
+ 
2095
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2096
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2097
+  (0.3ms) SELECT version FROM "schema_migrations"
2098
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2099
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2100
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2101
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2102
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2103
+  (250.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2104
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2105
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2106
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2107
+  (1.7ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2108
+  (2.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2109
+ FOREIGN KEY ("cangaroo_connection_id")
2110
+ REFERENCES "cangaroo_connections" ("id")
2111
+ 
2112
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2113
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2114
+  (0.3ms) SELECT version FROM "schema_migrations"
2115
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2116
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2117
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2118
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2119
+  (125.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2120
+  (408.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2121
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2122
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2123
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2124
+  (1.6ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2125
+  (2.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2126
+ FOREIGN KEY ("cangaroo_connection_id")
2127
+ REFERENCES "cangaroo_connections" ("id")
2128
+ 
2129
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2130
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2131
+  (0.2ms) SELECT version FROM "schema_migrations"
2132
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2133
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2134
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2135
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2136
+  (124.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
2137
+  (446.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2138
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2139
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2140
+  (3.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2141
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2142
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2143
+ FOREIGN KEY ("cangaroo_connection_id")
2144
+ REFERENCES "cangaroo_connections" ("id")
2145
+ 
2146
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2147
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2148
+  (0.2ms) SELECT version FROM "schema_migrations"
2149
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2150
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2151
+  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2152
+  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2153
+  (122.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
2154
+  (255.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2155
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2156
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2157
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2158
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2159
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2160
+ FOREIGN KEY ("cangaroo_connection_id")
2161
+ REFERENCES "cangaroo_connections" ("id")
2162
+ 
2163
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2164
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2165
+  (0.3ms) SELECT version FROM "schema_migrations"
2166
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2167
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2168
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2169
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2170
+  (118.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
2171
+  (256.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2172
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2173
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2174
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2175
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2176
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2177
+ FOREIGN KEY ("cangaroo_connection_id")
2178
+ REFERENCES "cangaroo_connections" ("id")
2179
+ 
2180
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2181
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2182
+  (0.2ms) SELECT version FROM "schema_migrations"
2183
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2184
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2185
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2186
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2187
+  (115.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
2188
+  (247.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2189
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2190
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2191
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2192
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2193
+  (1.8ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2194
+ FOREIGN KEY ("cangaroo_connection_id")
2195
+ REFERENCES "cangaroo_connections" ("id")
2196
+ 
2197
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2198
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2199
+  (0.4ms) SELECT version FROM "schema_migrations"
2200
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2201
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2202
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2203
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2204
+  (123.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
2205
+  (251.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2206
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2207
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2208
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2209
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2210
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2211
+ FOREIGN KEY ("cangaroo_connection_id")
2212
+ REFERENCES "cangaroo_connections" ("id")
2213
+ 
2214
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2215
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2216
+  (0.3ms) SELECT version FROM "schema_migrations"
2217
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2218
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2219
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2220
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2221
+  (124.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
2222
+  (255.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2223
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2224
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2225
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2226
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2227
+  (2.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2228
+ FOREIGN KEY ("cangaroo_connection_id")
2229
+ REFERENCES "cangaroo_connections" ("id")
2230
+ 
2231
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2232
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2233
+  (0.2ms) SELECT version FROM "schema_migrations"
2234
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2235
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2236
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2237
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2238
+  (123.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
2239
+  (250.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2240
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2241
+  (5.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2242
+  (3.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2243
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2244
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2245
+ FOREIGN KEY ("cangaroo_connection_id")
2246
+ REFERENCES "cangaroo_connections" ("id")
2247
+ 
2248
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2249
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2250
+  (0.4ms) SELECT version FROM "schema_migrations"
2251
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2252
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2253
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2254
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2255
+  (124.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2256
+  (250.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2257
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2258
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2259
+  (3.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2260
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2261
+  (2.0ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2262
+ FOREIGN KEY ("cangaroo_connection_id")
2263
+ REFERENCES "cangaroo_connections" ("id")
2264
+ 
2265
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2266
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2267
+  (0.3ms) SELECT version FROM "schema_migrations"
2268
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2269
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2270
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2271
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2272
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2273
+  (249.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2274
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2275
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2276
+  (4.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2277
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2278
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2279
+ FOREIGN KEY ("cangaroo_connection_id")
2280
+ REFERENCES "cangaroo_connections" ("id")
2281
+ 
2282
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2283
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2284
+  (0.3ms) SELECT version FROM "schema_migrations"
2285
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2286
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2287
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2288
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2289
+  (116.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
2290
+  (264.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2291
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2292
+  (6.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2293
+  (2.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2294
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2295
+  (2.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2296
+ FOREIGN KEY ("cangaroo_connection_id")
2297
+ REFERENCES "cangaroo_connections" ("id")
2298
+ 
2299
+  (12.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2300
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2301
+  (0.6ms) SELECT version FROM "schema_migrations"
2302
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2303
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2304
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2305
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2306
+  (123.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
2307
+  (256.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2308
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2309
+  (6.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2310
+  (4.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2311
+  (1.4ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2312
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2313
+ FOREIGN KEY ("cangaroo_connection_id")
2314
+ REFERENCES "cangaroo_connections" ("id")
2315
+ 
2316
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2317
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2318
+  (0.3ms) SELECT version FROM "schema_migrations"
2319
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2320
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2321
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2322
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2323
+  (116.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2324
+  (251.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2325
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2326
+  (6.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2327
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2328
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2329
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2330
+ FOREIGN KEY ("cangaroo_connection_id")
2331
+ REFERENCES "cangaroo_connections" ("id")
2332
+ 
2333
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2334
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2335
+  (0.2ms) SELECT version FROM "schema_migrations"
2336
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2337
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2338
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2339
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2340
+  (124.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2341
+  (255.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2342
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2343
+  (4.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2344
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2345
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2346
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2347
+ FOREIGN KEY ("cangaroo_connection_id")
2348
+ REFERENCES "cangaroo_connections" ("id")
2349
+ 
2350
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2351
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2352
+  (0.3ms) SELECT version FROM "schema_migrations"
2353
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2354
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2355
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2356
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2357
+  (125.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2358
+  (258.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2359
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2360
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2361
+  (3.7ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2362
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2363
+  (2.3ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2364
+ FOREIGN KEY ("cangaroo_connection_id")
2365
+ REFERENCES "cangaroo_connections" ("id")
2366
+ 
2367
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2368
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2369
+  (0.2ms) SELECT version FROM "schema_migrations"
2370
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2371
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2372
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2373
+  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2374
+  (124.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
2375
+  (250.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2376
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2377
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2378
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2379
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2380
+  (2.3ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2381
+ FOREIGN KEY ("cangaroo_connection_id")
2382
+ REFERENCES "cangaroo_connections" ("id")
2383
+ 
2384
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2385
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2386
+  (0.2ms) SELECT version FROM "schema_migrations"
2387
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2388
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2389
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2390
+  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2391
+  (123.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
2392
+  (250.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2393
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2394
+  (7.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2395
+  (5.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2396
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2397
+  (1.9ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2398
+ FOREIGN KEY ("cangaroo_connection_id")
2399
+ REFERENCES "cangaroo_connections" ("id")
2400
+ 
2401
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2402
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2403
+  (0.3ms) SELECT version FROM "schema_migrations"
2404
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2405
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2406
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2407
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2408
+  (124.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
2409
+  (411.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2410
+ SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2411
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2412
+  (3.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2413
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2414
+  (10.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2415
+ FOREIGN KEY ("cangaroo_connection_id")
2416
+ REFERENCES "cangaroo_connections" ("id")
2417
+ 
2418
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2419
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2420
+  (0.3ms) SELECT version FROM "schema_migrations"
2421
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2422
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2423
+  (4.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2424
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2425
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2426
+  (251.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2427
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2428
+  (3.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2429
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2430
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2431
+  (1.8ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2432
+ FOREIGN KEY ("cangaroo_connection_id")
2433
+ REFERENCES "cangaroo_connections" ("id")
2434
+ 
2435
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2436
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2437
+  (0.2ms) SELECT version FROM "schema_migrations"
2438
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2439
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2440
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2441
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2442
+  (120.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2443
+  (402.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2444
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2445
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2446
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2447
+  (1.8ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2448
+  (1.9ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2449
+ FOREIGN KEY ("cangaroo_connection_id")
2450
+ REFERENCES "cangaroo_connections" ("id")
2451
+ 
2452
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2453
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2454
+  (0.3ms) SELECT version FROM "schema_migrations"
2455
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2456
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2457
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2458
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2459
+  (115.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2460
+  (417.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2461
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2462
+  (5.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2463
+  (3.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2464
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2465
+  (1.9ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2466
+ FOREIGN KEY ("cangaroo_connection_id")
2467
+ REFERENCES "cangaroo_connections" ("id")
2468
+ 
2469
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2470
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2471
+  (0.2ms) SELECT version FROM "schema_migrations"
2472
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2473
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2474
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2475
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2476
+  (125.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2477
+  (247.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2478
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2479
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2480
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2481
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2482
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2483
+ FOREIGN KEY ("cangaroo_connection_id")
2484
+ REFERENCES "cangaroo_connections" ("id")
2485
+ 
2486
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2487
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2488
+  (0.3ms) SELECT version FROM "schema_migrations"
2489
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2490
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2491
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2492
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2493
+  (117.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2494
+  (251.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2495
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2496
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2497
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2498
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2499
+  (2.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2500
+ FOREIGN KEY ("cangaroo_connection_id")
2501
+ REFERENCES "cangaroo_connections" ("id")
2502
+ 
2503
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2504
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2505
+  (0.3ms) SELECT version FROM "schema_migrations"
2506
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2507
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2508
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2509
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2510
+  (125.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
2511
+  (257.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2512
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2513
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2514
+  (3.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2515
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2516
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2517
+ FOREIGN KEY ("cangaroo_connection_id")
2518
+ REFERENCES "cangaroo_connections" ("id")
2519
+ 
2520
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2521
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2522
+  (0.3ms) SELECT version FROM "schema_migrations"
2523
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2524
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2525
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2526
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2527
+  (117.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
2528
+  (255.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2529
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2530
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2531
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2532
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2533
+  (2.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2534
+ FOREIGN KEY ("cangaroo_connection_id")
2535
+ REFERENCES "cangaroo_connections" ("id")
2536
+ 
2537
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2538
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2539
+  (0.2ms) SELECT version FROM "schema_migrations"
2540
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2541
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2542
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2543
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2544
+  (123.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2545
+  (251.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2546
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2547
+  (3.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2548
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2549
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2550
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2551
+ FOREIGN KEY ("cangaroo_connection_id")
2552
+ REFERENCES "cangaroo_connections" ("id")
2553
+ 
2554
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2555
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2556
+  (0.4ms) SELECT version FROM "schema_migrations"
2557
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2558
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2559
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2560
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2561
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2562
+  (403.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2563
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2564
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2565
+  (5.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2566
+  (1.4ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2567
+  (1.8ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2568
+ FOREIGN KEY ("cangaroo_connection_id")
2569
+ REFERENCES "cangaroo_connections" ("id")
2570
+ 
2571
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2572
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2573
+  (0.2ms) SELECT version FROM "schema_migrations"
2574
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2575
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2576
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2577
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2578
+  (117.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2579
+  (417.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2580
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2581
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2582
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2583
+  (1.0ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2584
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2585
+ FOREIGN KEY ("cangaroo_connection_id")
2586
+ REFERENCES "cangaroo_connections" ("id")
2587
+ 
2588
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2589
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2590
+  (0.2ms) SELECT version FROM "schema_migrations"
2591
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2592
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2593
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2594
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2595
+  (130.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
2596
+  (395.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2597
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2598
+  (5.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2599
+  (4.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2600
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2601
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2602
+ FOREIGN KEY ("cangaroo_connection_id")
2603
+ REFERENCES "cangaroo_connections" ("id")
2604
+ 
2605
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2606
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2607
+  (0.3ms) SELECT version FROM "schema_migrations"
2608
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2609
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2610
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2611
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2612
+  (125.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2613
+  (279.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2614
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2615
+  (5.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2616
+  (3.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2617
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2618
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2619
+ FOREIGN KEY ("cangaroo_connection_id")
2620
+ REFERENCES "cangaroo_connections" ("id")
2621
+ 
2622
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2623
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2624
+  (0.3ms) SELECT version FROM "schema_migrations"
2625
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2626
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2627
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2628
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2629
+  (114.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
2630
+  (413.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2631
+ SQL (1.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2632
+  (13.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2633
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2634
+  (1.7ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2635
+  (4.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2636
+ FOREIGN KEY ("cangaroo_connection_id")
2637
+ REFERENCES "cangaroo_connections" ("id")
2638
+ 
2639
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2640
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2641
+  (0.5ms) SELECT version FROM "schema_migrations"
2642
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2643
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2644
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2645
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2646
+  (125.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
2647
+  (431.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2648
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2649
+  (5.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2650
+  (4.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2651
+  (1.5ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2652
+  (1.8ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2653
+ FOREIGN KEY ("cangaroo_connection_id")
2654
+ REFERENCES "cangaroo_connections" ("id")
2655
+ 
2656
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2657
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2658
+  (0.3ms) SELECT version FROM "schema_migrations"
2659
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2660
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2661
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2662
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2663
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2664
+  (259.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2665
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2666
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2667
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2668
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2669
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2670
+ FOREIGN KEY ("cangaroo_connection_id")
2671
+ REFERENCES "cangaroo_connections" ("id")
2672
+ 
2673
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2674
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2675
+  (0.4ms) SELECT version FROM "schema_migrations"
2676
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2677
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2678
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2679
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2680
+  (119.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2681
+  (481.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2682
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2683
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2684
+  (4.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2685
+  (1.7ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2686
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2687
+ FOREIGN KEY ("cangaroo_connection_id")
2688
+ REFERENCES "cangaroo_connections" ("id")
2689
+ 
2690
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2691
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2692
+  (0.3ms) SELECT version FROM "schema_migrations"
2693
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2694
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2695
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2696
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2697
+  (123.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
2698
+  (251.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2699
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2700
+  (3.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2701
+  (2.5ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2702
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2703
+  (2.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2704
+ FOREIGN KEY ("cangaroo_connection_id")
2705
+ REFERENCES "cangaroo_connections" ("id")
2706
+ 
2707
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2708
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2709
+  (0.3ms) SELECT version FROM "schema_migrations"
2710
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2711
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2712
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2713
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2714
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
2715
+  (249.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2716
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2717
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2718
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2719
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2720
+  (2.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2721
+ FOREIGN KEY ("cangaroo_connection_id")
2722
+ REFERENCES "cangaroo_connections" ("id")
2723
+ 
2724
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2725
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2726
+  (0.3ms) SELECT version FROM "schema_migrations"
2727
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2728
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2729
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2730
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2731
+  (124.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
2732
+  (249.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2733
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2734
+  (4.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2735
+  (2.8ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2736
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2737
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2738
+ FOREIGN KEY ("cangaroo_connection_id")
2739
+ REFERENCES "cangaroo_connections" ("id")
2740
+ 
2741
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2742
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2743
+  (0.4ms) SELECT version FROM "schema_migrations"
2744
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2745
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2746
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2747
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2748
+  (129.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
2749
+  (419.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2750
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2751
+  (13.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2752
+  (3.0ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2753
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2754
+  (3.4ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2755
+ FOREIGN KEY ("cangaroo_connection_id")
2756
+ REFERENCES "cangaroo_connections" ("id")
2757
+ 
2758
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2759
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2760
+  (0.3ms) SELECT version FROM "schema_migrations"
2761
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2762
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2763
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2764
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2765
+  (114.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
2766
+  (398.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2767
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2768
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2769
+  (2.9ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2770
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2771
+  (2.1ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2772
+ FOREIGN KEY ("cangaroo_connection_id")
2773
+ REFERENCES "cangaroo_connections" ("id")
2774
+ 
2775
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2776
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2777
+  (0.2ms) SELECT version FROM "schema_migrations"
2778
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2779
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2780
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2781
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2782
+  (124.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2783
+  (251.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2784
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2785
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2786
+  (3.2ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2787
+  (1.1ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2788
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2789
+ FOREIGN KEY ("cangaroo_connection_id")
2790
+ REFERENCES "cangaroo_connections" ("id")
2791
+ 
2792
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2793
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2794
+  (0.2ms) SELECT version FROM "schema_migrations"
2795
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2796
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2797
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2798
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2799
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2800
+  (249.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2801
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2802
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2803
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2804
+  (1.3ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2805
+  (1.8ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2806
+ FOREIGN KEY ("cangaroo_connection_id")
2807
+ REFERENCES "cangaroo_connections" ("id")
2808
+ 
2809
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2810
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2811
+  (0.2ms) SELECT version FROM "schema_migrations"
2812
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2813
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2814
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2815
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2816
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2817
+  (412.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2818
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2819
+  (5.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2820
+  (3.3ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2821
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2822
+  (1.7ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2823
+ FOREIGN KEY ("cangaroo_connection_id")
2824
+ REFERENCES "cangaroo_connections" ("id")
2825
+ 
2826
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2827
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2828
+  (0.2ms) SELECT version FROM "schema_migrations"
2829
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2830
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2831
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2832
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2833
+  (123.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2834
+  (259.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2835
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2836
+  (6.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2837
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2838
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2839
+  (1.6ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2840
+ FOREIGN KEY ("cangaroo_connection_id")
2841
+ REFERENCES "cangaroo_connections" ("id")
2842
+ 
2843
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2844
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2845
+  (0.2ms) SELECT version FROM "schema_migrations"
2846
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2847
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2848
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2849
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2850
+  (124.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
2851
+  (253.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2852
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2853
+  (4.6ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2854
+  (3.1ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2855
+  (1.4ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2856
+  (2.3ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2857
+ FOREIGN KEY ("cangaroo_connection_id")
2858
+ REFERENCES "cangaroo_connections" ("id")
2859
+ 
2860
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2861
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2862
+  (0.4ms) SELECT version FROM "schema_migrations"
2863
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2864
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2865
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2866
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2867
+  (127.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
2868
+  (257.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2869
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2870
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2871
+  (2.6ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2872
+  (0.9ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2873
+  (1.5ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2874
+ FOREIGN KEY ("cangaroo_connection_id")
2875
+ REFERENCES "cangaroo_connections" ("id")
2876
+ 
2877
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2878
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2879
+  (0.3ms) SELECT version FROM "schema_migrations"
2880
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2881
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2882
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2883
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2884
+  (133.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
2885
+  (442.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2886
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2887
+  (5.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2888
+  (3.4ms) CREATE TABLE "cangaroo_items" ("id" serial primary key, "item_type" character varying, "item_id" character varying, "payload" json, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "cangaroo_connection_id" integer) 
2889
+  (1.2ms) CREATE INDEX "index_cangaroo_items_on_cangaroo_connection_id" ON "cangaroo_items" USING btree ("cangaroo_connection_id")
2890
+  (2.2ms) ALTER TABLE "cangaroo_items" ADD CONSTRAINT "fk_rails_93d525d01f"
2891
+ FOREIGN KEY ("cangaroo_connection_id")
2892
+ REFERENCES "cangaroo_connections" ("id")
2893
+ 
2894
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
2895
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2896
+  (0.2ms) SELECT version FROM "schema_migrations"
2897
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030171657')
2898
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028135022')
2899
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2900
+  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2901
+  (18.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2902
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2903
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2904
+ Migrating to CreateCangarooConnections (20151028172151)
2905
+  (0.1ms) BEGIN
2906
+  (10.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
2907
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151028172151"]]
2908
+  (0.6ms) COMMIT
2909
+ Migrating to AddParametersToCangarooConnection (20151030140821)
2910
+  (0.3ms) BEGIN
2911
+  (0.3ms) ALTER TABLE "cangaroo_connections" ADD "parameters" text
2912
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151030140821"]]
2913
+  (0.4ms) COMMIT
2914
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2915
+  (2.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
2916
+ FROM pg_constraint c
2917
+ JOIN pg_class t1 ON c.conrelid = t1.oid
2918
+ JOIN pg_class t2 ON c.confrelid = t2.oid
2919
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
2920
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
2921
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
2922
+ WHERE c.contype = 'f'
2923
+ AND t1.relname = 'cangaroo_connections'
2924
+ AND t3.nspname = ANY (current_schemas(false))
2925
+ ORDER BY c.conname
2926
+ 
2927
+  (112.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
2928
+  (240.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2929
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2930
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2931
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2932
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2933
+  (0.3ms) SELECT version FROM "schema_migrations"
2934
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2935
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2936
+  (119.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
2937
+  (285.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2938
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2939
+  (5.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2940
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2941
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2942
+  (0.4ms) SELECT version FROM "schema_migrations"
2943
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2944
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2945
+  (123.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
2946
+  (458.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2947
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2948
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2949
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2950
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2951
+  (0.2ms) SELECT version FROM "schema_migrations"
2952
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2953
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2954
+  (122.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
2955
+  (245.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2956
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2957
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2958
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2959
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2960
+  (0.2ms) SELECT version FROM "schema_migrations"
2961
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2962
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2963
+  (115.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
2964
+  (239.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2965
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2966
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2967
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2968
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2969
+  (0.3ms) SELECT version FROM "schema_migrations"
2970
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2971
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2972
+  (122.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2973
+  (246.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2974
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2975
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2976
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2977
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2978
+  (0.5ms) SELECT version FROM "schema_migrations"
2979
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2980
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2981
+  (117.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
2982
+  (279.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2983
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2984
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2985
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2986
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2987
+  (0.4ms) SELECT version FROM "schema_migrations"
2988
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2989
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2990
+  (114.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
2991
+  (262.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
2992
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
2993
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
2994
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2995
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2996
+  (0.4ms) SELECT version FROM "schema_migrations"
2997
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
2998
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
2999
+  (130.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
3000
+  (253.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3001
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3002
+  (4.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3003
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3004
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3005
+  (0.3ms) SELECT version FROM "schema_migrations"
3006
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3007
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3008
+  (124.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
3009
+  (262.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3010
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3011
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3012
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3013
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3014
+  (0.2ms) SELECT version FROM "schema_migrations"
3015
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3016
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3017
+  (124.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
3018
+  (251.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3019
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3020
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3021
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3022
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3023
+  (0.2ms) SELECT version FROM "schema_migrations"
3024
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3025
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3026
+  (124.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
3027
+  (262.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3028
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3029
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3030
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3031
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3032
+  (0.3ms) SELECT version FROM "schema_migrations"
3033
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3034
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3035
+  (124.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3036
+  (253.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3037
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3038
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3039
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3040
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3041
+  (0.3ms) SELECT version FROM "schema_migrations"
3042
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3043
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3044
+  (126.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
3045
+  (415.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3046
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3047
+  (5.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3048
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3049
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3050
+  (0.3ms) SELECT version FROM "schema_migrations"
3051
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3052
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3053
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3054
+  (252.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3055
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3056
+  (6.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3057
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3058
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3059
+  (0.3ms) SELECT version FROM "schema_migrations"
3060
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3061
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3062
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3063
+  (243.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3064
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3065
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3066
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3067
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3068
+  (0.3ms) SELECT version FROM "schema_migrations"
3069
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3070
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3071
+  (124.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3072
+  (251.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3073
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3074
+  (5.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3075
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3076
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3077
+  (0.4ms) SELECT version FROM "schema_migrations"
3078
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3079
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3080
+  (118.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3081
+  (253.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3082
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3083
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3084
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3085
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3086
+  (0.3ms) SELECT version FROM "schema_migrations"
3087
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3088
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3089
+  (116.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
3090
+  (399.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3091
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3092
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3093
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3094
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3095
+  (0.3ms) SELECT version FROM "schema_migrations"
3096
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3097
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3098
+  (124.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
3099
+  (250.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3100
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3101
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3102
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3103
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3104
+  (0.2ms) SELECT version FROM "schema_migrations"
3105
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3106
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3107
+  (123.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
3108
+  (416.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3109
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3110
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3111
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3112
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3113
+  (0.3ms) SELECT version FROM "schema_migrations"
3114
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3115
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3116
+  (116.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
3117
+  (380.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3118
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3119
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3120
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3121
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3122
+  (0.3ms) SELECT version FROM "schema_migrations"
3123
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3124
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3125
+  (124.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
3126
+  (253.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3127
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3128
+  (5.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3129
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3130
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3131
+  (0.3ms) SELECT version FROM "schema_migrations"
3132
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3133
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3134
+  (125.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
3135
+  (252.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3136
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3137
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3138
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3139
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3140
+  (0.3ms) SELECT version FROM "schema_migrations"
3141
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3142
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3143
+  (124.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
3144
+  (253.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3145
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3146
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3147
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3148
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3149
+  (0.3ms) SELECT version FROM "schema_migrations"
3150
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3151
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3152
+  (117.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
3153
+  (251.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3154
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3155
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3156
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3157
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3158
+  (0.2ms) SELECT version FROM "schema_migrations"
3159
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3160
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3161
+  (125.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
3162
+  (252.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3163
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3164
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3165
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3166
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3167
+  (0.2ms) SELECT version FROM "schema_migrations"
3168
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3169
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3170
+  (124.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
3171
+  (251.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3172
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3173
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3174
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3175
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3176
+  (0.4ms) SELECT version FROM "schema_migrations"
3177
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3178
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3179
+  (125.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
3180
+  (253.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3181
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3182
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3183
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3184
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3185
+  (0.3ms) SELECT version FROM "schema_migrations"
3186
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3187
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3188
+  (124.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
3189
+  (254.6ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3190
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3191
+  (6.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3192
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3193
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3194
+  (0.4ms) SELECT version FROM "schema_migrations"
3195
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3196
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3197
+  (124.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3198
+  (251.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3199
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3200
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3201
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3202
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3203
+  (0.3ms) SELECT version FROM "schema_migrations"
3204
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3205
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3206
+  (124.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
3207
+  (253.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3208
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3209
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3210
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3211
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3212
+  (0.3ms) SELECT version FROM "schema_migrations"
3213
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3214
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3215
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3216
+  (250.9ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3217
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3218
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3219
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3220
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3221
+  (0.3ms) SELECT version FROM "schema_migrations"
3222
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3223
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3224
+  (124.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
3225
+  (252.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3226
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3227
+  (4.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3228
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3229
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3230
+  (0.3ms) SELECT version FROM "schema_migrations"
3231
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3232
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3233
+  (124.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
3234
+  (271.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3235
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3236
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3237
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3238
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3239
+  (0.3ms) SELECT version FROM "schema_migrations"
3240
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3241
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3242
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3243
+  (261.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3244
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3245
+  (4.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3246
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3247
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3248
+  (0.3ms) SELECT version FROM "schema_migrations"
3249
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3250
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3251
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3252
+  (256.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3253
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3254
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3255
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3256
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3257
+  (0.3ms) SELECT version FROM "schema_migrations"
3258
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3259
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3260
+  (124.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
3261
+  (253.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3262
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3263
+  (4.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3264
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3265
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3266
+  (0.3ms) SELECT version FROM "schema_migrations"
3267
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3268
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3269
+  (125.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
3270
+  (257.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3271
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3272
+  (5.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3273
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3274
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3275
+  (0.3ms) SELECT version FROM "schema_migrations"
3276
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3277
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3278
+  (128.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
3279
+  (407.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3280
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3281
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3282
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3283
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3284
+  (0.3ms) SELECT version FROM "schema_migrations"
3285
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3286
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3287
+  (124.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
3288
+  (250.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3289
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3290
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3291
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3292
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3293
+  (0.3ms) SELECT version FROM "schema_migrations"
3294
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3295
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3296
+  (129.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
3297
+  (410.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3298
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3299
+  (5.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3300
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3301
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3302
+  (0.4ms) SELECT version FROM "schema_migrations"
3303
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3304
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3305
+  (124.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3306
+  (259.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3307
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3308
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3309
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3310
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3311
+  (0.3ms) SELECT version FROM "schema_migrations"
3312
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3313
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3314
+  (126.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
3315
+  (402.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3316
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3317
+  (6.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3318
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3319
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3320
+  (0.3ms) SELECT version FROM "schema_migrations"
3321
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3322
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3323
+  (127.1ms) DROP DATABASE IF EXISTS "cangaroo_test"
3324
+  (427.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3325
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3326
+  (5.2ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3327
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3328
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3329
+  (0.3ms) SELECT version FROM "schema_migrations"
3330
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3331
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3332
+  (115.4ms) DROP DATABASE IF EXISTS "cangaroo_test"
3333
+  (252.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3334
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3335
+  (3.9ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3336
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3337
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3338
+  (0.2ms) SELECT version FROM "schema_migrations"
3339
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3340
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3341
+  (122.7ms) DROP DATABASE IF EXISTS "cangaroo_test"
3342
+  (252.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3343
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3344
+  (3.8ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3345
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3346
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3347
+  (0.3ms) SELECT version FROM "schema_migrations"
3348
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3349
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3350
+  (120.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3351
+  (252.5ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3352
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3353
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3354
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3355
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3356
+  (0.4ms) SELECT version FROM "schema_migrations"
3357
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3358
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3359
+  (122.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
3360
+  (251.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3361
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3362
+  (4.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3363
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3364
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3365
+  (0.3ms) SELECT version FROM "schema_migrations"
3366
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3367
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3368
+  (122.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
3369
+  (253.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3370
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3371
+  (4.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3372
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3373
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3374
+  (0.4ms) SELECT version FROM "schema_migrations"
3375
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3376
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3377
+  (120.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
3378
+  (396.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3379
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3380
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3381
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3382
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3383
+  (0.4ms) SELECT version FROM "schema_migrations"
3384
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3385
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3386
+  (122.6ms) DROP DATABASE IF EXISTS "cangaroo_test"
3387
+  (253.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3388
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3389
+  (4.7ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3390
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3391
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3392
+  (0.3ms) SELECT version FROM "schema_migrations"
3393
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3394
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3395
+  (125.3ms) DROP DATABASE IF EXISTS "cangaroo_test"
3396
+  (253.7ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3397
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3398
+  (4.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3399
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3400
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3401
+  (0.3ms) SELECT version FROM "schema_migrations"
3402
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3403
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3404
+  (122.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3405
+  (266.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3406
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3407
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3408
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3409
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3410
+  (0.2ms) SELECT version FROM "schema_migrations"
3411
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3412
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3413
+  (126.9ms) DROP DATABASE IF EXISTS "cangaroo_test"
3414
+  (412.1ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3415
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3416
+  (4.0ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3417
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3418
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3419
+  (0.4ms) SELECT version FROM "schema_migrations"
3420
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3421
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3422
+  (122.5ms) DROP DATABASE IF EXISTS "cangaroo_test"
3423
+  (252.2ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3424
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3425
+  (4.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3426
+  (8.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3427
+  (17.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3428
+  (1.0ms) SELECT version FROM "schema_migrations"
3429
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3430
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3431
+  (129.0ms) DROP DATABASE IF EXISTS "cangaroo_test"
3432
+  (393.0ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3433
+ SQL (1.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3434
+  (9.1ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3435
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3436
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3437
+  (0.3ms) SELECT version FROM "schema_migrations"
3438
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3439
+  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3440
+  (115.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3441
+  (396.3ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3442
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3443
+  (6.3ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3444
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3445
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3446
+  (0.5ms) SELECT version FROM "schema_migrations"
3447
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3448
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3449
+  (125.2ms) DROP DATABASE IF EXISTS "cangaroo_test"
3450
+  (257.8ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3451
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3452
+  (15.5ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3453
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3454
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3455
+  (0.4ms) SELECT version FROM "schema_migrations"
3456
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3457
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')
3458
+  (122.8ms) DROP DATABASE IF EXISTS "cangaroo_test"
3459
+  (253.4ms) CREATE DATABASE "cangaroo_test" ENCODING = 'utf8'
3460
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
3461
+  (5.4ms) CREATE TABLE "cangaroo_connections" ("id" serial primary key, "name" character varying, "url" character varying, "key" character varying, "token" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "parameters" text)
3462
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3463
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3464
+  (0.3ms) SELECT version FROM "schema_migrations"
3465
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20151030140821')
3466
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20151028172151')