entangled 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b346ba92b1c5fd0eb643177f578387de48a74150
4
- data.tar.gz: f7beb07dcc9533e1aa1d991b677cfbf3dc864517
3
+ metadata.gz: 8c3deced392adea9707d51cd90ed1b8d528ffa7d
4
+ data.tar.gz: 6241ff4a346fa121fc87d2e19eaf15273f39ea31
5
5
  SHA512:
6
- metadata.gz: 666d0fdf3236a271286c3cba63734af5c5d0d2edc4408fc9206b3cf1bfa0964a749e3ae1e0bbb0c9136d0a5233732556de4fe482c7566d56a469a7bf469a6e85
7
- data.tar.gz: 6f2504708a1feb5b2efcac74d6f5c12e8300dcf23ea522a88c4c1b64fd6a8708d8689abf9e6d339c282e42feae8cf87c3e499260d85438d89aaa48db88ad01ba
6
+ metadata.gz: 37d5765d158a961317ed4b0a875ea2aff233b735d041cfe9935c248865c2b320f8f6c64b22532e5529e4b0b84ad8a184da90b83d1770e5c205eb308f0a4e605e
7
+ data.tar.gz: ee7755583e9e638fc1fe06e8cfdf0db4b49eec76145a72215c24f4ff33f5f6e7f9c29ce52246364b08e4f205c7817cabd47aed59143487b8b910fa6463c305b2
data/.gitignore CHANGED
@@ -11,4 +11,6 @@
11
11
  *.so
12
12
  *.o
13
13
  *.a
14
+ *.gem
14
15
  mkmf.log
16
+ /spec/dummy/log/test.log
data/README.md CHANGED
@@ -14,8 +14,9 @@ gem 'entangled'
14
14
 
15
15
  Note that Redis and Puma are required as well. Redis is needed to build the channels clients subscribe to, Puma is needed to handle websockets concurrently.
16
16
 
17
+ Redis comes with Entangled, but you need to add Puma to your Gemfile:
18
+
17
19
  ```ruby
18
- gem 'redis'
19
20
  gem 'puma'
20
21
  ```
21
22
 
data/dump.rdb ADDED
Binary file
data/entangled.gemspec CHANGED
@@ -3,26 +3,28 @@ lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'entangled/version'
5
5
 
6
- Gem::Specification.new do |spec|
7
- spec.name = "entangled"
8
- spec.version = Entangled::VERSION
9
- spec.authors = ["Dennis Charles Hackethal"]
10
- spec.email = ["dennis.hackethal@gmail.com"]
11
- spec.summary = %q{Makes Rails real time through websockets.}
12
- spec.description = %q{Makes Rails real time through websockets. Check out the JavaScript counterpart for the front end.}
13
- spec.homepage = "https://github.com/so-entangled/rails"
14
- spec.license = "MIT"
6
+ Gem::Specification.new do |s|
7
+ s.name = "entangled"
8
+ s.version = Entangled::VERSION
9
+ s.authors = ["Dennis Charles Hackethal"]
10
+ s.email = ["dennis.hackethal@gmail.com"]
11
+ s.summary = %q{Makes Rails real time through websockets.}
12
+ s.description = %q{Makes Rails real time through websockets. Check out the JavaScript counterpart for the front end.}
13
+ s.homepage = "https://github.com/so-entangled/rails"
14
+ s.license = "MIT"
15
15
 
16
- spec.files = `git ls-files -z`.split("\x0")
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = Dir["spec/**/*"]
19
- spec.require_paths = ["lib"]
16
+ s.files = `git ls-files -z`.split("\x0")
17
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ s.test_files = Dir["spec/**/*"]
19
+ s.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "bundler", "~> 1.7"
22
- spec.add_development_dependency "rake", "~> 10.0"
23
- spec.add_development_dependency 'rspec-rails', '~> 3.2'
24
- spec.add_development_dependency 'sqlite3'
25
- spec.add_development_dependency 'byebug'
26
- spec.add_dependency 'tubesock', '~> 0.2'
27
- spec.add_dependency 'rails', '~> 4.2'
21
+ s.add_development_dependency 'bundler', '~> 1.7'
22
+ s.add_development_dependency 'rake', '~> 10.0'
23
+ s.add_development_dependency 'rspec-rails', '~> 3.2'
24
+ s.add_development_dependency 'sqlite3', '~> 1.3'
25
+ s.add_development_dependency 'byebug', '~> 3.5'
26
+ s.add_development_dependency 'bourne', '~> 1.6'
27
+ s.add_dependency 'tubesock', '~> 0.2'
28
+ s.add_dependency 'rails', '~> 4.2'
29
+ s.add_dependency 'redis', '~> 3.2'
28
30
  end
data/lib/entangled.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'redis'
1
2
  require 'entangled/version'
2
3
  require 'entangled/model'
3
4
  require 'entangled/controller'
@@ -63,10 +63,10 @@ module Entangled
63
63
 
64
64
  # Creates callbacks in the extented model
65
65
  def create_hook(name)
66
- send :"after_#{name}", proc { publish(name) }
66
+ send :"after_#{name}", -> { publish(name) }
67
67
  end
68
68
  end
69
-
69
+
70
70
  module InstanceMethods
71
71
  private
72
72
 
@@ -74,12 +74,14 @@ module Entangled
74
74
  # to the model's channel or the record's channel
75
75
  # gets the message
76
76
  def publish(action)
77
- Redis.new.publish(
77
+ redis = Redis.new
78
+
79
+ redis.publish(
78
80
  self.class.inferred_channel_name,
79
81
  json(action)
80
82
  )
81
83
 
82
- Redis.new.publish(
84
+ redis.publish(
83
85
  inferred_channel_name_for_single_record,
84
86
  json(action)
85
87
  )
@@ -91,7 +93,7 @@ module Entangled
91
93
  # DeliciousTaco with the id 1, the inferred channel
92
94
  # name for the single record is "delicious_tacos/1"
93
95
  def inferred_channel_name_for_single_record
94
- "#{self.class.inferred_channel_name}/#{id}"
96
+ "#{self.class.inferred_channel_name}/#{to_param}"
95
97
  end
96
98
 
97
99
  # JSON containing the type of action (:create, :update
@@ -1,3 +1,3 @@
1
1
  module Entangled
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -0,0 +1,5 @@
1
+ # To test :only option as array
2
+ class Bar < ActiveRecord::Base
3
+ include Entangled::Model
4
+ entangle only: [:create, :update]
5
+ end
@@ -0,0 +1,5 @@
1
+ # To test :except option as array
2
+ class Barfoo < ActiveRecord::Base
3
+ include Entangled::Model
4
+ entangle except: [:update, :destroy]
5
+ end
@@ -0,0 +1,5 @@
1
+ # To test :only option as symbol
2
+ class Foo < ActiveRecord::Base
3
+ include Entangled::Model
4
+ entangle only: :create
5
+ end
@@ -0,0 +1,5 @@
1
+ # To test :except option as symbol
2
+ class Foobar < ActiveRecord::Base
3
+ include Entangled::Model
4
+ entangle except: :create
5
+ end
@@ -0,0 +1,4 @@
1
+ class Message < ActiveRecord::Base
2
+ include Entangled::Model
3
+ entangle
4
+ end
Binary file
@@ -0,0 +1,9 @@
1
+ class CreateMessages < ActiveRecord::Migration
2
+ def change
3
+ create_table :messages do |t|
4
+ t.text :body
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateFoos < ActiveRecord::Migration
2
+ def change
3
+ create_table :foos do |t|
4
+ t.text :body
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateBars < ActiveRecord::Migration
2
+ def change
3
+ create_table :bars do |t|
4
+ t.text :body
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateFoobars < ActiveRecord::Migration
2
+ def change
3
+ create_table :foobars do |t|
4
+ t.text :body
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateBarfoos < ActiveRecord::Migration
2
+ def change
3
+ create_table :barfoos do |t|
4
+ t.text :body
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,46 @@
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: 20150223004852) do
15
+
16
+ create_table "barfoos", force: :cascade do |t|
17
+ t.text "body"
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
+ end
21
+
22
+ create_table "bars", force: :cascade do |t|
23
+ t.text "body"
24
+ t.datetime "created_at", null: false
25
+ t.datetime "updated_at", null: false
26
+ end
27
+
28
+ create_table "foobars", force: :cascade do |t|
29
+ t.text "body"
30
+ t.datetime "created_at", null: false
31
+ t.datetime "updated_at", null: false
32
+ end
33
+
34
+ create_table "foos", force: :cascade do |t|
35
+ t.text "body"
36
+ t.datetime "created_at", null: false
37
+ t.datetime "updated_at", null: false
38
+ end
39
+
40
+ create_table "messages", force: :cascade do |t|
41
+ t.text "body"
42
+ t.datetime "created_at", null: false
43
+ t.datetime "updated_at", null: false
44
+ end
45
+
46
+ end
Binary file
@@ -0,0 +1,40 @@
1
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateMessages (20150222083608)
6
+  (0.2ms) begin transaction
7
+  (0.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150222083608"]]
9
+  (1.2ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
12
+  (0.1ms) begin transaction
13
+ SQL (3.0ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:49:16.215058"], ["updated_at", "2015-02-22 20:49:16.215058"]]
14
+  (1.2ms) commit transaction
15
+  (0.1ms) SELECT COUNT(*) FROM "messages"
16
+  (0.1ms) begin transaction
17
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:49:46.412513"], ["updated_at", "2015-02-22 20:49:46.412513"]]
18
+  (2.1ms) commit transaction
19
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
20
+ Migrating to CreateFoos (20150223004816)
21
+  (0.1ms) begin transaction
22
+  (0.4ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
23
+ SQL (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004816"]]
24
+  (1.8ms) commit transaction
25
+ Migrating to CreateBars (20150223004834)
26
+  (0.1ms) begin transaction
27
+  (0.7ms) CREATE TABLE "bars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
28
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004834"]]
29
+  (1.3ms) commit transaction
30
+ Migrating to CreateFoobars (20150223004841)
31
+  (0.1ms) begin transaction
32
+  (0.4ms) CREATE TABLE "foobars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
33
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004841"]]
34
+  (1.1ms) commit transaction
35
+ Migrating to CreateBarfoos (20150223004852)
36
+  (0.1ms) begin transaction
37
+  (0.4ms) CREATE TABLE "barfoos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004852"]]
39
+  (1.1ms) commit transaction
40
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -1036,3 +1036,1197 @@
1036
1036
   (0.0ms) rollback transaction
1037
1037
   (0.1ms) begin transaction
1038
1038
   (0.1ms) rollback transaction
1039
+  (0.3ms) begin transaction
1040
+  (0.1ms) rollback transaction
1041
+  (0.2ms) begin transaction
1042
+  (0.1ms) rollback transaction
1043
+  (0.1ms) begin transaction
1044
+  (0.1ms) rollback transaction
1045
+  (0.1ms) begin transaction
1046
+  (0.1ms) rollback transaction
1047
+  (0.1ms) begin transaction
1048
+  (0.0ms) rollback transaction
1049
+  (0.1ms) begin transaction
1050
+  (0.1ms) rollback transaction
1051
+  (0.1ms) begin transaction
1052
+  (0.1ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+  (0.1ms) rollback transaction
1055
+  (0.1ms) begin transaction
1056
+  (0.1ms) rollback transaction
1057
+  (0.1ms) begin transaction
1058
+  (0.1ms) rollback transaction
1059
+  (0.1ms) begin transaction
1060
+  (0.1ms) rollback transaction
1061
+  (0.1ms) begin transaction
1062
+  (0.1ms) rollback transaction
1063
+  (0.1ms) begin transaction
1064
+  (0.1ms) rollback transaction
1065
+  (0.1ms) begin transaction
1066
+  (0.1ms) rollback transaction
1067
+  (0.1ms) begin transaction
1068
+  (0.1ms) rollback transaction
1069
+  (0.1ms) begin transaction
1070
+  (0.1ms) rollback transaction
1071
+  (0.1ms) begin transaction
1072
+  (0.1ms) rollback transaction
1073
+  (0.1ms) begin transaction
1074
+  (0.1ms) rollback transaction
1075
+  (0.1ms) begin transaction
1076
+  (0.1ms) rollback transaction
1077
+  (0.1ms) begin transaction
1078
+  (0.1ms) rollback transaction
1079
+  (0.3ms) begin transaction
1080
+  (0.1ms) rollback transaction
1081
+  (0.1ms) begin transaction
1082
+  (0.1ms) rollback transaction
1083
+  (0.1ms) begin transaction
1084
+  (0.1ms) rollback transaction
1085
+  (0.1ms) begin transaction
1086
+  (0.1ms) rollback transaction
1087
+  (0.1ms) begin transaction
1088
+  (0.1ms) rollback transaction
1089
+  (0.1ms) begin transaction
1090
+  (0.1ms) rollback transaction
1091
+  (0.1ms) begin transaction
1092
+  (0.1ms) rollback transaction
1093
+  (0.1ms) begin transaction
1094
+  (0.0ms) rollback transaction
1095
+  (0.1ms) begin transaction
1096
+  (0.1ms) rollback transaction
1097
+  (0.1ms) begin transaction
1098
+  (0.1ms) rollback transaction
1099
+  (0.1ms) begin transaction
1100
+  (0.1ms) rollback transaction
1101
+  (0.0ms) begin transaction
1102
+  (0.1ms) rollback transaction
1103
+  (0.1ms) begin transaction
1104
+  (0.1ms) rollback transaction
1105
+  (0.1ms) begin transaction
1106
+  (0.1ms) rollback transaction
1107
+  (0.1ms) begin transaction
1108
+  (0.1ms) rollback transaction
1109
+  (0.1ms) begin transaction
1110
+  (0.1ms) rollback transaction
1111
+  (0.1ms) begin transaction
1112
+  (0.1ms) rollback transaction
1113
+  (0.1ms) begin transaction
1114
+  (0.1ms) rollback transaction
1115
+  (0.1ms) begin transaction
1116
+  (0.1ms) rollback transaction
1117
+  (0.1ms) begin transaction
1118
+  (0.1ms) rollback transaction
1119
+  (0.4ms) begin transaction
1120
+  (0.1ms) rollback transaction
1121
+  (0.1ms) begin transaction
1122
+  (0.1ms) rollback transaction
1123
+  (0.2ms) begin transaction
1124
+  (0.1ms) rollback transaction
1125
+  (0.1ms) begin transaction
1126
+  (0.1ms) rollback transaction
1127
+  (0.1ms) begin transaction
1128
+  (0.1ms) rollback transaction
1129
+  (0.1ms) begin transaction
1130
+  (0.1ms) rollback transaction
1131
+  (0.1ms) begin transaction
1132
+  (0.0ms) rollback transaction
1133
+  (0.0ms) begin transaction
1134
+  (0.1ms) rollback transaction
1135
+  (0.1ms) begin transaction
1136
+  (0.1ms) rollback transaction
1137
+  (0.1ms) begin transaction
1138
+  (0.1ms) rollback transaction
1139
+  (0.1ms) begin transaction
1140
+  (0.1ms) rollback transaction
1141
+  (0.1ms) begin transaction
1142
+  (0.1ms) rollback transaction
1143
+  (0.1ms) begin transaction
1144
+  (0.1ms) rollback transaction
1145
+  (0.1ms) begin transaction
1146
+  (0.1ms) rollback transaction
1147
+  (0.1ms) begin transaction
1148
+  (0.1ms) rollback transaction
1149
+  (0.1ms) begin transaction
1150
+  (0.0ms) rollback transaction
1151
+  (0.1ms) begin transaction
1152
+  (0.0ms) rollback transaction
1153
+  (0.1ms) begin transaction
1154
+  (0.1ms) rollback transaction
1155
+  (0.1ms) begin transaction
1156
+  (0.1ms) rollback transaction
1157
+  (0.1ms) begin transaction
1158
+  (0.0ms) rollback transaction
1159
+  (3.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1160
+  (0.1ms) select sqlite_version(*)
1161
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1162
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1163
+ Migrating to CreateMessages (20150222083608)
1164
+  (0.1ms) begin transaction
1165
+  (0.5ms) CREATE TABLE "messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1166
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150222083608"]]
1167
+  (1.2ms) commit transaction
1168
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1169
+  (0.1ms) begin transaction
1170
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:38:31.736451"], ["updated_at", "2015-02-22 20:38:31.736451"]]
1171
+  (1.0ms) rollback transaction
1172
+  (0.1ms) begin transaction
1173
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:44:38.961424"], ["updated_at", "2015-02-22 20:44:38.961424"]]
1174
+  (0.5ms) rollback transaction
1175
+  (0.1ms) begin transaction
1176
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:46:24.451057"], ["updated_at", "2015-02-22 20:46:24.451057"]]
1177
+  (1.7ms) rollback transaction
1178
+  (0.1ms) begin transaction
1179
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:47:24.936540"], ["updated_at", "2015-02-22 20:47:24.936540"]]
1180
+  (1.6ms) rollback transaction
1181
+  (0.1ms) begin transaction
1182
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:51:10.689922"], ["updated_at", "2015-02-22 20:51:10.689922"]]
1183
+  (2.7ms) commit transaction
1184
+  (0.1ms) begin transaction
1185
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:53:48.372832"], ["updated_at", "2015-02-22 20:53:48.372832"]]
1186
+  (2.1ms) commit transaction
1187
+  (0.1ms) begin transaction
1188
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:54:31.858237"], ["updated_at", "2015-02-22 20:54:31.858237"]]
1189
+  (0.9ms) commit transaction
1190
+  (0.2ms) begin transaction
1191
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:55:03.163916"], ["updated_at", "2015-02-22 20:55:03.163916"]]
1192
+  (2.3ms) commit transaction
1193
+  (0.1ms) begin transaction
1194
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:55:49.855159"], ["updated_at", "2015-02-22 20:55:49.855159"]]
1195
+  (2.1ms) commit transaction
1196
+  (0.1ms) begin transaction
1197
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:57:19.238734"], ["updated_at", "2015-02-22 20:57:19.238734"]]
1198
+  (2.5ms) commit transaction
1199
+  (0.1ms) begin transaction
1200
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:58:08.295587"], ["updated_at", "2015-02-22 20:58:08.295587"]]
1201
+  (2.2ms) commit transaction
1202
+  (0.2ms) begin transaction
1203
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 20:58:27.856115"], ["updated_at", "2015-02-22 20:58:27.856115"]]
1204
+  (0.8ms) commit transaction
1205
+  (0.1ms) begin transaction
1206
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:04:09.761171"], ["updated_at", "2015-02-22 21:04:09.761171"]]
1207
+  (2.1ms) commit transaction
1208
+  (0.1ms) begin transaction
1209
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:20:30.606223"], ["updated_at", "2015-02-22 21:20:30.606223"]]
1210
+  (4.6ms) commit transaction
1211
+  (0.1ms) begin transaction
1212
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:22:35.655398"], ["updated_at", "2015-02-22 21:22:35.655398"]]
1213
+  (2.2ms) commit transaction
1214
+  (0.1ms) begin transaction
1215
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:23:15.492434"], ["updated_at", "2015-02-22 21:23:15.492434"]]
1216
+  (2.2ms) commit transaction
1217
+  (0.1ms) begin transaction
1218
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:28:06.760996"], ["updated_at", "2015-02-22 21:28:06.760996"]]
1219
+  (1.1ms) commit transaction
1220
+  (0.1ms) begin transaction
1221
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:28:54.179346"], ["updated_at", "2015-02-22 21:28:54.179346"]]
1222
+  (0.8ms) commit transaction
1223
+  (0.1ms) begin transaction
1224
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:29:07.955400"], ["updated_at", "2015-02-22 21:29:07.955400"]]
1225
+  (2.1ms) commit transaction
1226
+  (0.1ms) begin transaction
1227
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:29:40.373052"], ["updated_at", "2015-02-22 21:29:40.373052"]]
1228
+  (2.7ms) commit transaction
1229
+  (0.1ms) begin transaction
1230
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:29:58.708041"], ["updated_at", "2015-02-22 21:29:58.708041"]]
1231
+  (0.9ms) commit transaction
1232
+  (0.1ms) begin transaction
1233
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:35:50.136909"], ["updated_at", "2015-02-22 21:35:50.136909"]]
1234
+  (0.9ms) commit transaction
1235
+  (0.1ms) begin transaction
1236
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:40:07.599149"], ["updated_at", "2015-02-22 21:40:07.599149"]]
1237
+  (1.5ms) commit transaction
1238
+  (0.1ms) begin transaction
1239
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:42:51.732436"], ["updated_at", "2015-02-22 21:42:51.732436"]]
1240
+  (0.8ms) commit transaction
1241
+  (0.1ms) begin transaction
1242
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:46:42.787578"], ["updated_at", "2015-02-22 21:46:42.787578"]]
1243
+  (2.5ms) commit transaction
1244
+  (0.1ms) begin transaction
1245
+ SQL (1.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 21:59:05.448417"], ["updated_at", "2015-02-22 21:59:05.448417"]]
1246
+  (1.0ms) commit transaction
1247
+  (0.1ms) begin transaction
1248
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:08:38.830901"], ["updated_at", "2015-02-22 22:08:38.830901"]]
1249
+  (2.2ms) commit transaction
1250
+  (0.1ms) begin transaction
1251
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:10:42.466976"], ["updated_at", "2015-02-22 22:10:42.466976"]]
1252
+  (2.1ms) commit transaction
1253
+  (0.1ms) begin transaction
1254
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:12:09.539616"], ["updated_at", "2015-02-22 22:12:09.539616"]]
1255
+  (2.1ms) commit transaction
1256
+  (0.1ms) begin transaction
1257
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:12:30.895959"], ["updated_at", "2015-02-22 22:12:30.895959"]]
1258
+  (3.1ms) commit transaction
1259
+  (0.1ms) begin transaction
1260
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:12:53.192618"], ["updated_at", "2015-02-22 22:12:53.192618"]]
1261
+  (2.2ms) commit transaction
1262
+  (0.1ms) begin transaction
1263
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:13:18.020590"], ["updated_at", "2015-02-22 22:13:18.020590"]]
1264
+  (2.3ms) commit transaction
1265
+  (0.1ms) begin transaction
1266
+ SQL (1.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:44:45.826157"], ["updated_at", "2015-02-22 22:44:45.826157"]]
1267
+  (1.9ms) commit transaction
1268
+  (0.1ms) begin transaction
1269
+ SQL (0.8ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:45:00.775577"], ["updated_at", "2015-02-22 22:45:00.775577"]]
1270
+  (1.2ms) commit transaction
1271
+  (0.1ms) begin transaction
1272
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:45:12.882417"], ["updated_at", "2015-02-22 22:45:12.882417"]]
1273
+  (1.9ms) rollback transaction
1274
+  (0.1ms) begin transaction
1275
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:45:49.716669"], ["updated_at", "2015-02-22 22:45:49.716669"]]
1276
+  (1.9ms) rollback transaction
1277
+  (0.1ms) begin transaction
1278
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:46:15.012087"], ["updated_at", "2015-02-22 22:46:15.012087"]]
1279
+  (2.6ms) commit transaction
1280
+  (0.1ms) begin transaction
1281
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:47:15.494760"], ["updated_at", "2015-02-22 22:47:15.494760"]]
1282
+  (2.9ms) commit transaction
1283
+  (0.1ms) begin transaction
1284
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 22:47:23.901468"], ["updated_at", "2015-02-22 22:47:23.901468"]]
1285
+  (1.4ms) commit transaction
1286
+  (0.1ms) begin transaction
1287
+ SQL (0.8ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:33:25.434633"], ["updated_at", "2015-02-22 23:33:25.434633"]]
1288
+  (1.3ms) commit transaction
1289
+  (0.1ms) begin transaction
1290
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:34:02.103365"], ["updated_at", "2015-02-22 23:34:02.103365"]]
1291
+  (2.5ms) commit transaction
1292
+  (0.1ms) begin transaction
1293
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:35:05.206717"], ["updated_at", "2015-02-22 23:35:05.206717"]]
1294
+  (2.7ms) commit transaction
1295
+  (0.1ms) begin transaction
1296
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:36:20.575507"], ["updated_at", "2015-02-22 23:36:20.575507"]]
1297
+  (1.5ms) commit transaction
1298
+  (0.1ms) begin transaction
1299
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:36:33.471324"], ["updated_at", "2015-02-22 23:36:33.471324"]]
1300
+  (2.6ms) commit transaction
1301
+  (0.1ms) begin transaction
1302
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:37:03.033007"], ["updated_at", "2015-02-22 23:37:03.033007"]]
1303
+  (1.0ms) commit transaction
1304
+  (0.1ms) begin transaction
1305
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:37:49.617580"], ["updated_at", "2015-02-22 23:37:49.617580"]]
1306
+  (2.7ms) commit transaction
1307
+  (0.1ms) begin transaction
1308
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:38:04.144560"], ["updated_at", "2015-02-22 23:38:04.144560"]]
1309
+  (2.1ms) commit transaction
1310
+  (0.1ms) begin transaction
1311
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:38:36.248179"], ["updated_at", "2015-02-22 23:38:36.248179"]]
1312
+  (0.9ms) commit transaction
1313
+  (0.1ms) begin transaction
1314
+ SQL (0.9ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:38:51.082939"], ["updated_at", "2015-02-22 23:38:51.082939"]]
1315
+  (1.3ms) commit transaction
1316
+  (0.1ms) begin transaction
1317
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:41:56.293292"], ["updated_at", "2015-02-22 23:41:56.293292"]]
1318
+  (3.0ms) commit transaction
1319
+  (0.1ms) begin transaction
1320
+ SQL (0.9ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:43:44.378032"], ["updated_at", "2015-02-22 23:43:44.378032"]]
1321
+  (2.7ms) commit transaction
1322
+  (0.1ms) begin transaction
1323
+ SQL (0.9ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:43:53.178379"], ["updated_at", "2015-02-22 23:43:53.178379"]]
1324
+  (1.2ms) commit transaction
1325
+  (0.1ms) begin transaction
1326
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:43:53.188651"], ["updated_at", "2015-02-22 23:43:53.188651"]]
1327
+  (1.2ms) commit transaction
1328
+  (0.1ms) begin transaction
1329
+ SQL (1.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:43:53.197142"], ["id", 47]]
1330
+  (1.1ms) commit transaction
1331
+  (0.1ms) begin transaction
1332
+ SQL (0.9ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:44:53.236279"], ["updated_at", "2015-02-22 23:44:53.236279"]]
1333
+  (1.2ms) commit transaction
1334
+  (0.1ms) begin transaction
1335
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:44:53.246455"], ["updated_at", "2015-02-22 23:44:53.246455"]]
1336
+  (1.1ms) commit transaction
1337
+  (0.1ms) begin transaction
1338
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:44:53.253426"], ["id", 49]]
1339
+  (1.0ms) commit transaction
1340
+  (0.1ms) begin transaction
1341
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:44:53.261933"], ["updated_at", "2015-02-22 23:44:53.261933"]]
1342
+  (1.1ms) commit transaction
1343
+  (0.1ms) begin transaction
1344
+ SQL (1.0ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 50]]
1345
+  (1.1ms) commit transaction
1346
+  (0.1ms) begin transaction
1347
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:45:08.066456"], ["updated_at", "2015-02-22 23:45:08.066456"]]
1348
+  (2.6ms) commit transaction
1349
+  (0.1ms) begin transaction
1350
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:45:08.076522"], ["updated_at", "2015-02-22 23:45:08.076522"]]
1351
+  (1.0ms) commit transaction
1352
+  (0.1ms) begin transaction
1353
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:45:08.083016"], ["id", 52]]
1354
+  (1.0ms) commit transaction
1355
+  (0.1ms) begin transaction
1356
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:45:08.091844"], ["updated_at", "2015-02-22 23:45:08.091844"]]
1357
+  (1.1ms) commit transaction
1358
+  (0.1ms) begin transaction
1359
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 53]]
1360
+  (1.0ms) commit transaction
1361
+  (0.1ms) begin transaction
1362
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:46:10.484608"], ["updated_at", "2015-02-22 23:46:10.484608"]]
1363
+  (2.8ms) commit transaction
1364
+  (0.1ms) begin transaction
1365
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:46:10.495143"], ["updated_at", "2015-02-22 23:46:10.495143"]]
1366
+  (1.2ms) commit transaction
1367
+  (0.1ms) begin transaction
1368
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:46:10.499988"], ["updated_at", "2015-02-22 23:46:10.499988"]]
1369
+  (0.9ms) commit transaction
1370
+  (0.1ms) begin transaction
1371
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:46:10.505655"], ["id", 56]]
1372
+  (1.0ms) commit transaction
1373
+  (0.1ms) begin transaction
1374
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:46:10.514584"], ["updated_at", "2015-02-22 23:46:10.514584"]]
1375
+  (1.1ms) commit transaction
1376
+  (0.1ms) begin transaction
1377
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 57]]
1378
+  (1.2ms) commit transaction
1379
+  (0.1ms) begin transaction
1380
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:05.861790"], ["updated_at", "2015-02-22 23:47:05.861790"]]
1381
+  (2.6ms) commit transaction
1382
+  (0.1ms) begin transaction
1383
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:05.872536"], ["updated_at", "2015-02-22 23:47:05.872536"]]
1384
+  (1.1ms) commit transaction
1385
+  (0.1ms) begin transaction
1386
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:05.878485"], ["updated_at", "2015-02-22 23:47:05.878485"]]
1387
+  (0.8ms) commit transaction
1388
+  (0.1ms) begin transaction
1389
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:47:05.884105"], ["id", 60]]
1390
+  (1.0ms) commit transaction
1391
+  (0.1ms) begin transaction
1392
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:05.893190"], ["updated_at", "2015-02-22 23:47:05.893190"]]
1393
+  (1.1ms) commit transaction
1394
+  (0.1ms) begin transaction
1395
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:47:05.898744"], ["id", 61]]
1396
+  (1.1ms) commit transaction
1397
+  (0.1ms) begin transaction
1398
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:05.903781"], ["updated_at", "2015-02-22 23:47:05.903781"]]
1399
+  (1.1ms) commit transaction
1400
+  (0.1ms) begin transaction
1401
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 62]]
1402
+  (1.1ms) commit transaction
1403
+  (0.1ms) begin transaction
1404
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:38.320445"], ["updated_at", "2015-02-22 23:47:38.320445"]]
1405
+  (2.6ms) commit transaction
1406
+  (0.1ms) begin transaction
1407
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:38.330502"], ["updated_at", "2015-02-22 23:47:38.330502"]]
1408
+  (1.1ms) commit transaction
1409
+  (0.1ms) begin transaction
1410
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:38.335644"], ["updated_at", "2015-02-22 23:47:38.335644"]]
1411
+  (0.8ms) commit transaction
1412
+  (0.1ms) begin transaction
1413
+ SQL (0.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:47:38.341219"], ["id", 65]]
1414
+  (1.0ms) commit transaction
1415
+  (0.1ms) begin transaction
1416
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:38.349795"], ["updated_at", "2015-02-22 23:47:38.349795"]]
1417
+  (1.0ms) commit transaction
1418
+  (0.1ms) begin transaction
1419
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:47:38.354927"], ["id", 66]]
1420
+  (1.2ms) commit transaction
1421
+  (0.1ms) begin transaction
1422
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:38.359885"], ["updated_at", "2015-02-22 23:47:38.359885"]]
1423
+  (1.0ms) commit transaction
1424
+  (0.1ms) begin transaction
1425
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 67]]
1426
+  (0.9ms) commit transaction
1427
+  (0.1ms) begin transaction
1428
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:47:38.369667"], ["updated_at", "2015-02-22 23:47:38.369667"]]
1429
+  (1.0ms) commit transaction
1430
+  (0.1ms) begin transaction
1431
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 68]]
1432
+  (1.0ms) commit transaction
1433
+  (0.1ms) begin transaction
1434
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:07.342837"], ["updated_at", "2015-02-22 23:48:07.342837"]]
1435
+  (2.9ms) commit transaction
1436
+  (0.1ms) begin transaction
1437
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:07.353971"], ["updated_at", "2015-02-22 23:48:07.353971"]]
1438
+  (1.3ms) commit transaction
1439
+  (0.1ms) begin transaction
1440
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:07.360986"], ["updated_at", "2015-02-22 23:48:07.360986"]]
1441
+  (0.9ms) commit transaction
1442
+  (0.1ms) begin transaction
1443
+ SQL (0.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:48:07.366644"], ["id", 71]]
1444
+  (1.0ms) commit transaction
1445
+  (0.1ms) begin transaction
1446
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:07.377435"], ["updated_at", "2015-02-22 23:48:07.377435"]]
1447
+  (1.1ms) commit transaction
1448
+  (0.1ms) begin transaction
1449
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:48:07.382523"], ["id", 72]]
1450
+  (0.8ms) commit transaction
1451
+  (0.1ms) begin transaction
1452
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:07.388599"], ["updated_at", "2015-02-22 23:48:07.388599"]]
1453
+  (1.0ms) commit transaction
1454
+  (0.1ms) begin transaction
1455
+ SQL (0.4ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 73]]
1456
+  (1.1ms) commit transaction
1457
+  (0.1ms) begin transaction
1458
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:07.398145"], ["updated_at", "2015-02-22 23:48:07.398145"]]
1459
+  (1.0ms) commit transaction
1460
+  (0.1ms) begin transaction
1461
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 74]]
1462
+  (1.1ms) commit transaction
1463
+  (0.1ms) begin transaction
1464
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:36.841740"], ["updated_at", "2015-02-22 23:48:36.841740"]]
1465
+  (2.5ms) commit transaction
1466
+  (0.1ms) begin transaction
1467
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:36.851243"], ["updated_at", "2015-02-22 23:48:36.851243"]]
1468
+  (1.1ms) commit transaction
1469
+  (0.1ms) begin transaction
1470
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:36.856307"], ["updated_at", "2015-02-22 23:48:36.856307"]]
1471
+  (1.4ms) commit transaction
1472
+  (0.1ms) begin transaction
1473
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:48:36.863088"], ["id", 77]]
1474
+  (1.3ms) commit transaction
1475
+  (0.1ms) begin transaction
1476
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:36.874318"], ["updated_at", "2015-02-22 23:48:36.874318"]]
1477
+  (1.0ms) commit transaction
1478
+  (0.1ms) begin transaction
1479
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:48:36.880167"], ["id", 78]]
1480
+  (0.8ms) commit transaction
1481
+  (0.1ms) begin transaction
1482
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:36.885480"], ["updated_at", "2015-02-22 23:48:36.885480"]]
1483
+  (1.5ms) commit transaction
1484
+  (0.1ms) begin transaction
1485
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 79]]
1486
+  (0.8ms) commit transaction
1487
+  (0.1ms) begin transaction
1488
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:48:36.895394"], ["updated_at", "2015-02-22 23:48:36.895394"]]
1489
+  (1.8ms) commit transaction
1490
+  (0.1ms) begin transaction
1491
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 80]]
1492
+  (1.0ms) commit transaction
1493
+  (0.1ms) begin transaction
1494
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:43.309388"], ["updated_at", "2015-02-22 23:54:43.309388"]]
1495
+  (0.9ms) commit transaction
1496
+  (0.1ms) begin transaction
1497
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:43.317514"], ["updated_at", "2015-02-22 23:54:43.317514"]]
1498
+  (1.1ms) commit transaction
1499
+  (0.1ms) begin transaction
1500
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:43.322550"], ["updated_at", "2015-02-22 23:54:43.322550"]]
1501
+  (1.1ms) commit transaction
1502
+  (0.1ms) begin transaction
1503
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:43.328162"], ["updated_at", "2015-02-22 23:54:43.328162"]]
1504
+  (1.0ms) commit transaction
1505
+  (0.1ms) begin transaction
1506
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:50.292986"], ["updated_at", "2015-02-22 23:54:50.292986"]]
1507
+  (1.1ms) commit transaction
1508
+  (0.1ms) begin transaction
1509
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:50.300838"], ["updated_at", "2015-02-22 23:54:50.300838"]]
1510
+  (1.1ms) commit transaction
1511
+  (0.1ms) begin transaction
1512
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:50.305468"], ["updated_at", "2015-02-22 23:54:50.305468"]]
1513
+  (0.9ms) commit transaction
1514
+  (0.1ms) begin transaction
1515
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:54:50.311577"], ["id", 87]]
1516
+  (1.1ms) commit transaction
1517
+  (0.1ms) begin transaction
1518
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:50.319363"], ["updated_at", "2015-02-22 23:54:50.319363"]]
1519
+  (1.1ms) commit transaction
1520
+  (0.1ms) begin transaction
1521
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-22 23:54:50.325154"], ["id", 88]]
1522
+  (1.0ms) commit transaction
1523
+  (0.1ms) begin transaction
1524
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:50.329493"], ["updated_at", "2015-02-22 23:54:50.329493"]]
1525
+  (1.1ms) commit transaction
1526
+  (0.1ms) begin transaction
1527
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 89]]
1528
+  (1.0ms) commit transaction
1529
+  (0.1ms) begin transaction
1530
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-22 23:54:50.339059"], ["updated_at", "2015-02-22 23:54:50.339059"]]
1531
+  (1.2ms) commit transaction
1532
+  (0.1ms) begin transaction
1533
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 90]]
1534
+  (1.0ms) commit transaction
1535
+  (0.1ms) begin transaction
1536
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:14.127181"], ["updated_at", "2015-02-23 00:18:14.127181"]]
1537
+  (1.1ms) commit transaction
1538
+  (0.1ms) begin transaction
1539
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:14.134337"], ["updated_at", "2015-02-23 00:18:14.134337"]]
1540
+  (0.9ms) commit transaction
1541
+  (0.1ms) begin transaction
1542
+ SQL (0.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:18:14.140184"], ["id", 92]]
1543
+  (1.0ms) commit transaction
1544
+  (0.1ms) begin transaction
1545
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:14.149168"], ["updated_at", "2015-02-23 00:18:14.149168"]]
1546
+  (1.0ms) commit transaction
1547
+  (0.1ms) begin transaction
1548
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:18:14.154164"], ["id", 93]]
1549
+  (1.6ms) commit transaction
1550
+  (0.1ms) begin transaction
1551
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:14.159608"], ["updated_at", "2015-02-23 00:18:14.159608"]]
1552
+  (1.1ms) commit transaction
1553
+  (0.1ms) begin transaction
1554
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 94]]
1555
+  (1.0ms) commit transaction
1556
+  (0.1ms) begin transaction
1557
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:14.168615"], ["updated_at", "2015-02-23 00:18:14.168615"]]
1558
+  (1.0ms) commit transaction
1559
+  (0.1ms) begin transaction
1560
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 95]]
1561
+  (1.0ms) commit transaction
1562
+  (0.1ms) begin transaction
1563
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:22.730757"], ["updated_at", "2015-02-23 00:18:22.730757"]]
1564
+  (0.9ms) commit transaction
1565
+  (0.1ms) begin transaction
1566
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:22.752961"], ["updated_at", "2015-02-23 00:18:22.752961"]]
1567
+  (1.0ms) commit transaction
1568
+  (0.2ms) begin transaction
1569
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:22.758126"], ["updated_at", "2015-02-23 00:18:22.758126"]]
1570
+  (1.2ms) commit transaction
1571
+  (0.1ms) begin transaction
1572
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:22.763404"], ["updated_at", "2015-02-23 00:18:22.763404"]]
1573
+  (1.1ms) commit transaction
1574
+  (0.1ms) begin transaction
1575
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:22.769089"], ["updated_at", "2015-02-23 00:18:22.769089"]]
1576
+  (1.1ms) commit transaction
1577
+  (0.1ms) begin transaction
1578
+ SQL (0.7ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:38.002762"], ["updated_at", "2015-02-23 00:18:38.002762"]]
1579
+  (2.2ms) commit transaction
1580
+  (0.1ms) begin transaction
1581
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:18:56.614737"], ["updated_at", "2015-02-23 00:18:56.614737"]]
1582
+  (2.6ms) commit transaction
1583
+  (0.1ms) begin transaction
1584
+ SQL (0.9ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:08.684259"], ["updated_at", "2015-02-23 00:19:08.684259"]]
1585
+  (3.0ms) commit transaction
1586
+  (0.1ms) begin transaction
1587
+ SQL (0.7ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:29.215740"], ["updated_at", "2015-02-23 00:19:29.215740"]]
1588
+  (3.1ms) commit transaction
1589
+  (0.2ms) begin transaction
1590
+ SQL (1.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:50.014893"], ["updated_at", "2015-02-23 00:19:50.014893"]]
1591
+  (2.4ms) commit transaction
1592
+  (0.1ms) begin transaction
1593
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:50.027012"], ["updated_at", "2015-02-23 00:19:50.027012"]]
1594
+  (1.0ms) commit transaction
1595
+  (0.1ms) begin transaction
1596
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:50.032573"], ["updated_at", "2015-02-23 00:19:50.032573"]]
1597
+  (1.0ms) commit transaction
1598
+  (0.1ms) begin transaction
1599
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:50.037297"], ["updated_at", "2015-02-23 00:19:50.037297"]]
1600
+  (1.2ms) commit transaction
1601
+  (0.1ms) begin transaction
1602
+ SQL (0.7ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:57.609300"], ["updated_at", "2015-02-23 00:19:57.609300"]]
1603
+  (2.6ms) commit transaction
1604
+  (0.1ms) begin transaction
1605
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:57.622494"], ["updated_at", "2015-02-23 00:19:57.622494"]]
1606
+  (1.2ms) commit transaction
1607
+  (0.1ms) begin transaction
1608
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:57.627816"], ["updated_at", "2015-02-23 00:19:57.627816"]]
1609
+  (0.9ms) commit transaction
1610
+  (0.1ms) begin transaction
1611
+ SQL (0.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:19:57.633926"], ["id", 111]]
1612
+  (1.4ms) commit transaction
1613
+  (0.1ms) begin transaction
1614
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:57.643301"], ["updated_at", "2015-02-23 00:19:57.643301"]]
1615
+  (1.0ms) commit transaction
1616
+  (0.1ms) begin transaction
1617
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:19:57.648431"], ["id", 112]]
1618
+  (1.0ms) commit transaction
1619
+  (0.1ms) begin transaction
1620
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:57.653524"], ["updated_at", "2015-02-23 00:19:57.653524"]]
1621
+  (1.1ms) commit transaction
1622
+  (0.1ms) begin transaction
1623
+ SQL (0.4ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 113]]
1624
+  (1.2ms) commit transaction
1625
+  (0.1ms) begin transaction
1626
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:19:57.663395"], ["updated_at", "2015-02-23 00:19:57.663395"]]
1627
+  (1.1ms) commit transaction
1628
+  (0.1ms) begin transaction
1629
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 114]]
1630
+  (1.0ms) commit transaction
1631
+  (0.2ms) begin transaction
1632
+ SQL (1.7ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:40:00.021201"], ["updated_at", "2015-02-23 00:40:00.021201"]]
1633
+  (1.7ms) commit transaction
1634
+  (0.1ms) begin transaction
1635
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:40:00.032182"], ["updated_at", "2015-02-23 00:40:00.032182"]]
1636
+  (1.1ms) commit transaction
1637
+  (0.1ms) begin transaction
1638
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:40:00.036571"], ["updated_at", "2015-02-23 00:40:00.036571"]]
1639
+  (1.2ms) commit transaction
1640
+  (0.1ms) begin transaction
1641
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:40:00.042908"], ["id", 117]]
1642
+  (1.0ms) commit transaction
1643
+  (0.1ms) begin transaction
1644
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:40:00.053741"], ["updated_at", "2015-02-23 00:40:00.053741"]]
1645
+  (1.1ms) commit transaction
1646
+  (0.1ms) begin transaction
1647
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:40:00.058778"], ["id", 118]]
1648
+  (1.0ms) commit transaction
1649
+  (0.1ms) begin transaction
1650
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:40:00.063273"], ["updated_at", "2015-02-23 00:40:00.063273"]]
1651
+  (1.1ms) commit transaction
1652
+  (0.1ms) begin transaction
1653
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 119]]
1654
+  (1.0ms) commit transaction
1655
+  (0.1ms) begin transaction
1656
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:40:00.072889"], ["updated_at", "2015-02-23 00:40:00.072889"]]
1657
+  (1.2ms) commit transaction
1658
+  (0.1ms) begin transaction
1659
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 120]]
1660
+  (0.9ms) commit transaction
1661
+  (0.1ms) begin transaction
1662
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:45:00.222534"], ["updated_at", "2015-02-23 00:45:00.222534"]]
1663
+  (2.6ms) commit transaction
1664
+  (0.1ms) begin transaction
1665
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:45:15.426748"], ["updated_at", "2015-02-23 00:45:15.426748"]]
1666
+  (2.8ms) commit transaction
1667
+  (0.2ms) begin transaction
1668
+ SQL (0.6ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:46:07.023736"], ["updated_at", "2015-02-23 00:46:07.023736"]]
1669
+  (2.6ms) commit transaction
1670
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1671
+ Migrating to CreateFoos (20150223004816)
1672
+  (0.2ms) begin transaction
1673
+  (0.6ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1674
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004816"]]
1675
+  (2.6ms) commit transaction
1676
+ Migrating to CreateBars (20150223004834)
1677
+  (0.1ms) begin transaction
1678
+  (0.4ms) CREATE TABLE "bars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1679
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004834"]]
1680
+  (1.1ms) commit transaction
1681
+ Migrating to CreateFoobars (20150223004841)
1682
+  (0.1ms) begin transaction
1683
+  (0.4ms) CREATE TABLE "foobars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1684
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004841"]]
1685
+  (1.1ms) commit transaction
1686
+ Migrating to CreateBarfoos (20150223004852)
1687
+  (0.1ms) begin transaction
1688
+  (0.4ms) CREATE TABLE "barfoos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1689
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150223004852"]]
1690
+  (1.1ms) commit transaction
1691
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1692
+  (0.1ms) begin transaction
1693
+ SQL (0.5ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.826221"], ["updated_at", "2015-02-23 00:50:54.826221"]]
1694
+  (2.6ms) commit transaction
1695
+  (0.1ms) begin transaction
1696
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.835084"], ["updated_at", "2015-02-23 00:50:54.835084"]]
1697
+  (1.0ms) commit transaction
1698
+  (0.1ms) begin transaction
1699
+ SQL (0.4ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:50:54.840430"], ["id", 2]]
1700
+  (1.2ms) commit transaction
1701
+  (0.1ms) begin transaction
1702
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.858095"], ["updated_at", "2015-02-23 00:50:54.858095"]]
1703
+  (1.1ms) commit transaction
1704
+  (0.1ms) begin transaction
1705
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.863599"], ["updated_at", "2015-02-23 00:50:54.863599"]]
1706
+  (1.1ms) commit transaction
1707
+  (0.1ms) begin transaction
1708
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.868397"], ["updated_at", "2015-02-23 00:50:54.868397"]]
1709
+  (1.1ms) commit transaction
1710
+  (0.1ms) begin transaction
1711
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:50:54.874274"], ["id", 126]]
1712
+  (1.0ms) commit transaction
1713
+  (0.1ms) begin transaction
1714
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.879502"], ["updated_at", "2015-02-23 00:50:54.879502"]]
1715
+  (1.1ms) commit transaction
1716
+  (0.1ms) begin transaction
1717
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:50:54.885809"], ["id", 127]]
1718
+  (1.2ms) commit transaction
1719
+  (0.1ms) begin transaction
1720
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.890586"], ["updated_at", "2015-02-23 00:50:54.890586"]]
1721
+  (1.4ms) commit transaction
1722
+  (0.1ms) begin transaction
1723
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 128]]
1724
+  (1.0ms) commit transaction
1725
+  (0.1ms) begin transaction
1726
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:50:54.900079"], ["updated_at", "2015-02-23 00:50:54.900079"]]
1727
+  (1.0ms) commit transaction
1728
+  (0.1ms) begin transaction
1729
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 129]]
1730
+  (1.1ms) commit transaction
1731
+  (0.1ms) begin transaction
1732
+ SQL (0.5ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.745405"], ["updated_at", "2015-02-23 00:52:25.745405"]]
1733
+  (2.8ms) commit transaction
1734
+  (0.2ms) begin transaction
1735
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.756600"], ["updated_at", "2015-02-23 00:52:25.756600"]]
1736
+  (1.2ms) commit transaction
1737
+  (0.1ms) begin transaction
1738
+ SQL (0.5ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:52:25.760672"], ["id", 4]]
1739
+  (1.1ms) commit transaction
1740
+  (0.1ms) begin transaction
1741
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.779614"], ["updated_at", "2015-02-23 00:52:25.779614"]]
1742
+  (1.1ms) commit transaction
1743
+  (0.1ms) begin transaction
1744
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.784986"], ["updated_at", "2015-02-23 00:52:25.784986"]]
1745
+  (1.2ms) commit transaction
1746
+  (0.1ms) begin transaction
1747
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.789746"], ["updated_at", "2015-02-23 00:52:25.789746"]]
1748
+  (0.9ms) commit transaction
1749
+  (0.1ms) begin transaction
1750
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:52:25.796035"], ["id", 132]]
1751
+  (1.0ms) commit transaction
1752
+  (0.1ms) begin transaction
1753
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.800639"], ["updated_at", "2015-02-23 00:52:25.800639"]]
1754
+  (1.1ms) commit transaction
1755
+  (0.1ms) begin transaction
1756
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:52:25.806403"], ["id", 133]]
1757
+  (1.0ms) commit transaction
1758
+  (0.1ms) begin transaction
1759
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.811039"], ["updated_at", "2015-02-23 00:52:25.811039"]]
1760
+  (1.5ms) commit transaction
1761
+  (0.1ms) begin transaction
1762
+ SQL (0.4ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 134]]
1763
+  (1.0ms) commit transaction
1764
+  (0.1ms) begin transaction
1765
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:25.820560"], ["updated_at", "2015-02-23 00:52:25.820560"]]
1766
+  (1.1ms) commit transaction
1767
+  (0.1ms) begin transaction
1768
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 135]]
1769
+  (0.8ms) commit transaction
1770
+  (0.1ms) begin transaction
1771
+ SQL (0.4ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.403317"], ["updated_at", "2015-02-23 00:52:52.403317"]]
1772
+  (2.5ms) commit transaction
1773
+  (0.1ms) begin transaction
1774
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.413008"], ["updated_at", "2015-02-23 00:52:52.413008"]]
1775
+  (1.1ms) commit transaction
1776
+  (0.1ms) begin transaction
1777
+ SQL (0.4ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:52:52.416674"], ["id", 6]]
1778
+  (1.0ms) commit transaction
1779
+  (0.1ms) begin transaction
1780
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.434891"], ["updated_at", "2015-02-23 00:52:52.434891"]]
1781
+  (1.2ms) commit transaction
1782
+  (0.1ms) begin transaction
1783
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.441369"], ["updated_at", "2015-02-23 00:52:52.441369"]]
1784
+  (1.1ms) commit transaction
1785
+  (0.1ms) begin transaction
1786
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.446418"], ["updated_at", "2015-02-23 00:52:52.446418"]]
1787
+  (1.0ms) commit transaction
1788
+  (0.1ms) begin transaction
1789
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:52:52.453256"], ["id", 138]]
1790
+  (1.0ms) commit transaction
1791
+  (0.1ms) begin transaction
1792
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.457866"], ["updated_at", "2015-02-23 00:52:52.457866"]]
1793
+  (1.1ms) commit transaction
1794
+  (0.1ms) begin transaction
1795
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:52:52.463359"], ["id", 139]]
1796
+  (1.0ms) commit transaction
1797
+  (0.1ms) begin transaction
1798
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.467765"], ["updated_at", "2015-02-23 00:52:52.467765"]]
1799
+  (1.4ms) commit transaction
1800
+  (0.1ms) begin transaction
1801
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 140]]
1802
+  (0.9ms) commit transaction
1803
+  (0.1ms) begin transaction
1804
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:52:52.477082"], ["updated_at", "2015-02-23 00:52:52.477082"]]
1805
+  (0.9ms) commit transaction
1806
+  (0.1ms) begin transaction
1807
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 141]]
1808
+  (0.9ms) commit transaction
1809
+  (0.1ms) begin transaction
1810
+ SQL (0.5ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.858243"], ["updated_at", "2015-02-23 00:53:17.858243"]]
1811
+  (2.6ms) commit transaction
1812
+  (0.1ms) begin transaction
1813
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.867935"], ["updated_at", "2015-02-23 00:53:17.867935"]]
1814
+  (1.1ms) commit transaction
1815
+  (0.1ms) begin transaction
1816
+ SQL (0.4ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:53:17.871546"], ["id", 8]]
1817
+  (1.0ms) commit transaction
1818
+  (0.1ms) begin transaction
1819
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.880078"], ["updated_at", "2015-02-23 00:53:17.880078"]]
1820
+  (1.1ms) commit transaction
1821
+  (0.1ms) begin transaction
1822
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 9]]
1823
+  (1.0ms) commit transaction
1824
+  (0.1ms) begin transaction
1825
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.895125"], ["updated_at", "2015-02-23 00:53:17.895125"]]
1826
+  (1.0ms) commit transaction
1827
+  (0.1ms) begin transaction
1828
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.901007"], ["updated_at", "2015-02-23 00:53:17.901007"]]
1829
+  (1.1ms) commit transaction
1830
+  (0.1ms) begin transaction
1831
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.905760"], ["updated_at", "2015-02-23 00:53:17.905760"]]
1832
+  (0.9ms) commit transaction
1833
+  (0.1ms) begin transaction
1834
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:53:17.912484"], ["id", 144]]
1835
+  (1.0ms) commit transaction
1836
+  (0.1ms) begin transaction
1837
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.916962"], ["updated_at", "2015-02-23 00:53:17.916962"]]
1838
+  (1.1ms) commit transaction
1839
+  (0.1ms) begin transaction
1840
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:53:17.922206"], ["id", 145]]
1841
+  (1.1ms) commit transaction
1842
+  (0.1ms) begin transaction
1843
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.927139"], ["updated_at", "2015-02-23 00:53:17.927139"]]
1844
+  (1.6ms) commit transaction
1845
+  (0.1ms) begin transaction
1846
+ SQL (0.4ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 146]]
1847
+  (1.1ms) commit transaction
1848
+  (0.1ms) begin transaction
1849
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:53:17.936596"], ["updated_at", "2015-02-23 00:53:17.936596"]]
1850
+  (1.0ms) commit transaction
1851
+  (0.1ms) begin transaction
1852
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 147]]
1853
+  (0.9ms) commit transaction
1854
+  (0.1ms) begin transaction
1855
+ SQL (0.4ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.279886"], ["updated_at", "2015-02-23 00:54:47.279886"]]
1856
+  (2.7ms) commit transaction
1857
+  (0.2ms) begin transaction
1858
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.290465"], ["updated_at", "2015-02-23 00:54:47.290465"]]
1859
+  (1.1ms) commit transaction
1860
+  (0.1ms) begin transaction
1861
+ SQL (0.4ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:54:47.294225"], ["id", 11]]
1862
+  (0.8ms) commit transaction
1863
+  (0.1ms) begin transaction
1864
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.302152"], ["updated_at", "2015-02-23 00:54:47.302152"]]
1865
+  (1.0ms) commit transaction
1866
+  (0.1ms) begin transaction
1867
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 12]]
1868
+  (0.8ms) commit transaction
1869
+  (0.1ms) begin transaction
1870
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 00:54:47.313782"], ["updated_at", "2015-02-23 00:54:47.313782"]]
1871
+  (1.0ms) commit transaction
1872
+  (0.1ms) begin transaction
1873
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 00:54:47.319200"], ["updated_at", "2015-02-23 00:54:47.319200"]]
1874
+  (1.2ms) commit transaction
1875
+  (0.1ms) begin transaction
1876
+  (0.1ms) commit transaction
1877
+  (0.1ms) begin transaction
1878
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 00:54:47.325833"], ["updated_at", "2015-02-23 00:54:47.325833"]]
1879
+  (1.0ms) commit transaction
1880
+  (0.1ms) begin transaction
1881
+ SQL (0.3ms) DELETE FROM "bars" WHERE "bars"."id" = ? [["id", 3]]
1882
+  (1.0ms) commit transaction
1883
+  (0.1ms) begin transaction
1884
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.341469"], ["updated_at", "2015-02-23 00:54:47.341469"]]
1885
+  (1.1ms) commit transaction
1886
+  (0.1ms) begin transaction
1887
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.346724"], ["updated_at", "2015-02-23 00:54:47.346724"]]
1888
+  (1.2ms) commit transaction
1889
+  (0.1ms) begin transaction
1890
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.351499"], ["updated_at", "2015-02-23 00:54:47.351499"]]
1891
+  (1.0ms) commit transaction
1892
+  (0.1ms) begin transaction
1893
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:54:47.357622"], ["id", 150]]
1894
+  (1.1ms) commit transaction
1895
+  (0.1ms) begin transaction
1896
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.362266"], ["updated_at", "2015-02-23 00:54:47.362266"]]
1897
+  (1.1ms) commit transaction
1898
+  (0.1ms) begin transaction
1899
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:54:47.367668"], ["id", 151]]
1900
+  (1.2ms) commit transaction
1901
+  (0.1ms) begin transaction
1902
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.372820"], ["updated_at", "2015-02-23 00:54:47.372820"]]
1903
+  (1.0ms) commit transaction
1904
+  (0.1ms) begin transaction
1905
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 152]]
1906
+  (1.2ms) commit transaction
1907
+  (0.1ms) begin transaction
1908
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:54:47.381778"], ["updated_at", "2015-02-23 00:54:47.381778"]]
1909
+  (1.4ms) commit transaction
1910
+  (0.1ms) begin transaction
1911
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 153]]
1912
+  (1.0ms) commit transaction
1913
+  (0.1ms) begin transaction
1914
+ SQL (0.4ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.630696"], ["updated_at", "2015-02-23 00:56:23.630696"]]
1915
+  (2.7ms) commit transaction
1916
+  (0.1ms) begin transaction
1917
+ SQL (0.5ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.641184"], ["updated_at", "2015-02-23 00:56:23.641184"]]
1918
+  (1.2ms) commit transaction
1919
+  (0.1ms) begin transaction
1920
+ SQL (0.4ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:56:23.646094"], ["id", 14]]
1921
+  (1.3ms) commit transaction
1922
+  (0.1ms) begin transaction
1923
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.655426"], ["updated_at", "2015-02-23 00:56:23.655426"]]
1924
+  (1.2ms) commit transaction
1925
+  (0.1ms) begin transaction
1926
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 15]]
1927
+  (1.0ms) commit transaction
1928
+  (0.1ms) begin transaction
1929
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 00:56:23.668374"], ["updated_at", "2015-02-23 00:56:23.668374"]]
1930
+  (1.1ms) commit transaction
1931
+  (0.1ms) begin transaction
1932
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 00:56:23.674703"], ["updated_at", "2015-02-23 00:56:23.674703"]]
1933
+  (1.1ms) commit transaction
1934
+  (0.1ms) begin transaction
1935
+  (0.1ms) commit transaction
1936
+  (0.1ms) begin transaction
1937
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 00:56:23.681717"], ["updated_at", "2015-02-23 00:56:23.681717"]]
1938
+  (1.1ms) commit transaction
1939
+  (0.1ms) begin transaction
1940
+ SQL (0.3ms) DELETE FROM "bars" WHERE "bars"."id" = ? [["id", 6]]
1941
+  (1.0ms) commit transaction
1942
+  (0.1ms) begin transaction
1943
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.697650"], ["updated_at", "2015-02-23 00:56:23.697650"]]
1944
+  (1.2ms) commit transaction
1945
+  (0.1ms) begin transaction
1946
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.703185"], ["updated_at", "2015-02-23 00:56:23.703185"]]
1947
+  (1.1ms) commit transaction
1948
+  (0.1ms) begin transaction
1949
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.708305"], ["updated_at", "2015-02-23 00:56:23.708305"]]
1950
+  (0.9ms) commit transaction
1951
+  (0.1ms) begin transaction
1952
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:56:23.714746"], ["id", 156]]
1953
+  (1.1ms) commit transaction
1954
+  (0.1ms) begin transaction
1955
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.719673"], ["updated_at", "2015-02-23 00:56:23.719673"]]
1956
+  (1.1ms) commit transaction
1957
+  (0.1ms) begin transaction
1958
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 00:56:23.725156"], ["id", 157]]
1959
+  (1.4ms) commit transaction
1960
+  (0.1ms) begin transaction
1961
+ SQL (0.7ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.729988"], ["updated_at", "2015-02-23 00:56:23.729988"]]
1962
+  (1.0ms) commit transaction
1963
+  (0.1ms) begin transaction
1964
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 158]]
1965
+  (1.3ms) commit transaction
1966
+  (0.1ms) begin transaction
1967
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 00:56:23.740141"], ["updated_at", "2015-02-23 00:56:23.740141"]]
1968
+  (1.1ms) commit transaction
1969
+  (0.1ms) begin transaction
1970
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 159]]
1971
+  (0.9ms) commit transaction
1972
+  (0.1ms) begin transaction
1973
+ SQL (0.4ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.477136"], ["updated_at", "2015-02-23 01:03:45.477136"]]
1974
+  (1.2ms) commit transaction
1975
+  (0.1ms) begin transaction
1976
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.485440"], ["updated_at", "2015-02-23 01:03:45.485440"]]
1977
+  (1.2ms) commit transaction
1978
+  (0.1ms) begin transaction
1979
+ SQL (0.3ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:03:45.489272"], ["id", 17]]
1980
+  (1.0ms) commit transaction
1981
+  (0.1ms) begin transaction
1982
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.498175"], ["updated_at", "2015-02-23 01:03:45.498175"]]
1983
+  (1.1ms) commit transaction
1984
+  (0.1ms) begin transaction
1985
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 18]]
1986
+  (1.0ms) commit transaction
1987
+  (0.0ms) begin transaction
1988
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:03:45.510193"], ["updated_at", "2015-02-23 01:03:45.510193"]]
1989
+  (1.1ms) commit transaction
1990
+  (0.1ms) begin transaction
1991
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:03:45.515912"], ["updated_at", "2015-02-23 01:03:45.515912"]]
1992
+  (0.9ms) commit transaction
1993
+  (0.1ms) begin transaction
1994
+  (0.1ms) commit transaction
1995
+  (0.1ms) begin transaction
1996
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:03:45.523200"], ["updated_at", "2015-02-23 01:03:45.523200"]]
1997
+  (1.1ms) commit transaction
1998
+  (0.1ms) begin transaction
1999
+ SQL (0.2ms) DELETE FROM "bars" WHERE "bars"."id" = ? [["id", 9]]
2000
+  (1.0ms) commit transaction
2001
+  (0.1ms) begin transaction
2002
+ SQL (0.4ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:03:45.536449"], ["updated_at", "2015-02-23 01:03:45.536449"]]
2003
+  (1.2ms) commit transaction
2004
+  (0.1ms) begin transaction
2005
+ SQL (0.3ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:03:45.541819"], ["updated_at", "2015-02-23 01:03:45.541819"]]
2006
+  (1.1ms) commit transaction
2007
+  (0.1ms) begin transaction
2008
+  (0.1ms) commit transaction
2009
+  (0.1ms) begin transaction
2010
+ SQL (0.4ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:03:45.547657"], ["updated_at", "2015-02-23 01:03:45.547657"]]
2011
+  (1.0ms) commit transaction
2012
+  (0.1ms) begin transaction
2013
+ SQL (0.3ms) DELETE FROM "foobars" WHERE "foobars"."id" = ? [["id", 3]]
2014
+  (1.0ms) commit transaction
2015
+  (0.1ms) begin transaction
2016
+ SQL (0.8ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:03:45.559124"], ["updated_at", "2015-02-23 01:03:45.559124"]]
2017
+  (1.1ms) commit transaction
2018
+  (0.1ms) begin transaction
2019
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:03:45.565651"], ["updated_at", "2015-02-23 01:03:45.565651"]]
2020
+  (1.2ms) commit transaction
2021
+  (0.1ms) begin transaction
2022
+  (0.1ms) commit transaction
2023
+  (0.1ms) begin transaction
2024
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:03:45.571946"], ["updated_at", "2015-02-23 01:03:45.571946"]]
2025
+  (1.3ms) commit transaction
2026
+  (0.1ms) begin transaction
2027
+ SQL (0.3ms) DELETE FROM "barfoos" WHERE "barfoos"."id" = ? [["id", 3]]
2028
+  (0.9ms) commit transaction
2029
+  (0.1ms) begin transaction
2030
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.588499"], ["updated_at", "2015-02-23 01:03:45.588499"]]
2031
+  (1.1ms) commit transaction
2032
+  (0.1ms) begin transaction
2033
+ SQL (0.5ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.595087"], ["updated_at", "2015-02-23 01:03:45.595087"]]
2034
+  (1.5ms) commit transaction
2035
+  (0.1ms) begin transaction
2036
+ SQL (0.4ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.602585"], ["updated_at", "2015-02-23 01:03:45.602585"]]
2037
+  (1.5ms) commit transaction
2038
+  (0.1ms) begin transaction
2039
+ SQL (0.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:03:45.609733"], ["id", 162]]
2040
+  (1.1ms) commit transaction
2041
+  (0.1ms) begin transaction
2042
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.614872"], ["updated_at", "2015-02-23 01:03:45.614872"]]
2043
+  (1.1ms) commit transaction
2044
+  (0.1ms) begin transaction
2045
+ SQL (0.5ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:03:45.620144"], ["id", 163]]
2046
+  (1.0ms) commit transaction
2047
+  (0.1ms) begin transaction
2048
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.625041"], ["updated_at", "2015-02-23 01:03:45.625041"]]
2049
+  (1.1ms) commit transaction
2050
+  (0.1ms) begin transaction
2051
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 164]]
2052
+  (1.1ms) commit transaction
2053
+  (0.1ms) begin transaction
2054
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:03:45.634399"], ["updated_at", "2015-02-23 01:03:45.634399"]]
2055
+  (1.1ms) commit transaction
2056
+  (0.1ms) begin transaction
2057
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 165]]
2058
+  (1.1ms) commit transaction
2059
+  (0.1ms) begin transaction
2060
+ SQL (0.5ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.437428"], ["updated_at", "2015-02-23 01:04:56.437428"]]
2061
+  (2.6ms) commit transaction
2062
+  (0.1ms) begin transaction
2063
+ SQL (0.4ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.448225"], ["updated_at", "2015-02-23 01:04:56.448225"]]
2064
+  (1.3ms) commit transaction
2065
+  (0.1ms) begin transaction
2066
+ SQL (0.6ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:04:56.453519"], ["id", 20]]
2067
+  (1.1ms) commit transaction
2068
+  (0.1ms) begin transaction
2069
+ SQL (0.3ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.464275"], ["updated_at", "2015-02-23 01:04:56.464275"]]
2070
+  (1.1ms) commit transaction
2071
+  (0.1ms) begin transaction
2072
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 21]]
2073
+  (1.0ms) commit transaction
2074
+  (0.1ms) begin transaction
2075
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:04:56.477016"], ["updated_at", "2015-02-23 01:04:56.477016"]]
2076
+  (1.2ms) commit transaction
2077
+  (0.1ms) begin transaction
2078
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:04:56.482662"], ["updated_at", "2015-02-23 01:04:56.482662"]]
2079
+  (1.1ms) commit transaction
2080
+  (0.1ms) begin transaction
2081
+  (0.1ms) commit transaction
2082
+  (0.1ms) begin transaction
2083
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:04:56.490208"], ["updated_at", "2015-02-23 01:04:56.490208"]]
2084
+  (1.1ms) commit transaction
2085
+  (0.1ms) begin transaction
2086
+ SQL (0.2ms) DELETE FROM "bars" WHERE "bars"."id" = ? [["id", 12]]
2087
+  (1.0ms) commit transaction
2088
+  (0.1ms) begin transaction
2089
+ SQL (0.4ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:04:56.503169"], ["updated_at", "2015-02-23 01:04:56.503169"]]
2090
+  (1.1ms) commit transaction
2091
+  (0.1ms) begin transaction
2092
+ SQL (0.3ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:04:56.508386"], ["updated_at", "2015-02-23 01:04:56.508386"]]
2093
+  (1.1ms) commit transaction
2094
+  (0.1ms) begin transaction
2095
+  (0.0ms) commit transaction
2096
+  (0.1ms) begin transaction
2097
+ SQL (0.3ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:04:56.514111"], ["updated_at", "2015-02-23 01:04:56.514111"]]
2098
+  (1.1ms) commit transaction
2099
+  (0.1ms) begin transaction
2100
+ SQL (0.3ms) DELETE FROM "foobars" WHERE "foobars"."id" = ? [["id", 6]]
2101
+  (1.1ms) commit transaction
2102
+  (0.1ms) begin transaction
2103
+ SQL (0.5ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:04:56.526380"], ["updated_at", "2015-02-23 01:04:56.526380"]]
2104
+  (1.2ms) commit transaction
2105
+  (0.1ms) begin transaction
2106
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:04:56.532246"], ["updated_at", "2015-02-23 01:04:56.532246"]]
2107
+  (1.1ms) commit transaction
2108
+  (0.1ms) begin transaction
2109
+  (0.1ms) commit transaction
2110
+  (0.1ms) begin transaction
2111
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:04:56.539092"], ["updated_at", "2015-02-23 01:04:56.539092"]]
2112
+  (1.1ms) commit transaction
2113
+  (0.1ms) begin transaction
2114
+ SQL (0.2ms) DELETE FROM "barfoos" WHERE "barfoos"."id" = ? [["id", 6]]
2115
+  (1.0ms) commit transaction
2116
+  (0.1ms) begin transaction
2117
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.555149"], ["updated_at", "2015-02-23 01:04:56.555149"]]
2118
+  (1.1ms) commit transaction
2119
+  (0.1ms) begin transaction
2120
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.560562"], ["updated_at", "2015-02-23 01:04:56.560562"]]
2121
+  (1.1ms) commit transaction
2122
+  (0.1ms) begin transaction
2123
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.564960"], ["updated_at", "2015-02-23 01:04:56.564960"]]
2124
+  (1.0ms) commit transaction
2125
+  (0.1ms) begin transaction
2126
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:04:56.571057"], ["id", 168]]
2127
+  (1.0ms) commit transaction
2128
+  (0.1ms) begin transaction
2129
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.575512"], ["updated_at", "2015-02-23 01:04:56.575512"]]
2130
+  (1.1ms) commit transaction
2131
+  (0.1ms) begin transaction
2132
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:04:56.580817"], ["id", 169]]
2133
+  (1.1ms) commit transaction
2134
+  (0.1ms) begin transaction
2135
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.585337"], ["updated_at", "2015-02-23 01:04:56.585337"]]
2136
+  (1.1ms) commit transaction
2137
+  (0.1ms) begin transaction
2138
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 170]]
2139
+  (0.9ms) commit transaction
2140
+  (0.1ms) begin transaction
2141
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:04:56.594168"], ["updated_at", "2015-02-23 01:04:56.594168"]]
2142
+  (1.0ms) commit transaction
2143
+  (0.1ms) begin transaction
2144
+ SQL (0.2ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 171]]
2145
+  (1.2ms) commit transaction
2146
+  (0.1ms) begin transaction
2147
+ SQL (0.9ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.521228"], ["updated_at", "2015-02-23 01:05:23.521228"]]
2148
+  (2.7ms) commit transaction
2149
+  (0.2ms) begin transaction
2150
+ SQL (0.4ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.532826"], ["updated_at", "2015-02-23 01:05:23.532826"]]
2151
+  (1.2ms) commit transaction
2152
+  (0.1ms) begin transaction
2153
+ SQL (0.4ms) UPDATE "foos" SET "body" = ?, "updated_at" = ? WHERE "foos"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:05:23.537706"], ["id", 23]]
2154
+  (1.0ms) commit transaction
2155
+  (0.1ms) begin transaction
2156
+ SQL (0.5ms) INSERT INTO "foos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.547045"], ["updated_at", "2015-02-23 01:05:23.547045"]]
2157
+  (1.2ms) commit transaction
2158
+  (0.1ms) begin transaction
2159
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 24]]
2160
+  (1.0ms) commit transaction
2161
+  (0.1ms) begin transaction
2162
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:05:23.560257"], ["updated_at", "2015-02-23 01:05:23.560257"]]
2163
+  (1.1ms) commit transaction
2164
+  (0.1ms) begin transaction
2165
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:05:23.566314"], ["updated_at", "2015-02-23 01:05:23.566314"]]
2166
+  (1.1ms) commit transaction
2167
+  (0.1ms) begin transaction
2168
+  (0.1ms) commit transaction
2169
+  (0.1ms) begin transaction
2170
+ SQL (0.3ms) INSERT INTO "bars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "bar"], ["created_at", "2015-02-23 01:05:23.573289"], ["updated_at", "2015-02-23 01:05:23.573289"]]
2171
+  (1.1ms) commit transaction
2172
+  (0.1ms) begin transaction
2173
+ SQL (0.2ms) DELETE FROM "bars" WHERE "bars"."id" = ? [["id", 15]]
2174
+  (1.0ms) commit transaction
2175
+  (0.1ms) begin transaction
2176
+ SQL (0.4ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:05:23.585489"], ["updated_at", "2015-02-23 01:05:23.585489"]]
2177
+  (1.0ms) commit transaction
2178
+  (0.1ms) begin transaction
2179
+ SQL (0.3ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:05:23.590650"], ["updated_at", "2015-02-23 01:05:23.590650"]]
2180
+  (1.1ms) commit transaction
2181
+  (0.1ms) begin transaction
2182
+  (0.1ms) commit transaction
2183
+  (0.1ms) begin transaction
2184
+ SQL (0.3ms) INSERT INTO "foobars" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foobar"], ["created_at", "2015-02-23 01:05:23.596573"], ["updated_at", "2015-02-23 01:05:23.596573"]]
2185
+  (1.1ms) commit transaction
2186
+  (0.1ms) begin transaction
2187
+ SQL (0.2ms) DELETE FROM "foobars" WHERE "foobars"."id" = ? [["id", 9]]
2188
+  (1.0ms) commit transaction
2189
+  (0.1ms) begin transaction
2190
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:05:23.608333"], ["updated_at", "2015-02-23 01:05:23.608333"]]
2191
+  (1.1ms) commit transaction
2192
+  (0.1ms) begin transaction
2193
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:05:23.614329"], ["updated_at", "2015-02-23 01:05:23.614329"]]
2194
+  (1.0ms) commit transaction
2195
+  (0.1ms) begin transaction
2196
+  (0.1ms) commit transaction
2197
+  (0.1ms) begin transaction
2198
+ SQL (0.3ms) INSERT INTO "barfoos" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "barfoo"], ["created_at", "2015-02-23 01:05:23.620659"], ["updated_at", "2015-02-23 01:05:23.620659"]]
2199
+  (1.0ms) commit transaction
2200
+  (0.1ms) begin transaction
2201
+ SQL (0.3ms) DELETE FROM "barfoos" WHERE "barfoos"."id" = ? [["id", 9]]
2202
+  (1.0ms) commit transaction
2203
+  (0.1ms) begin transaction
2204
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.636981"], ["updated_at", "2015-02-23 01:05:23.636981"]]
2205
+  (1.1ms) commit transaction
2206
+  (0.1ms) begin transaction
2207
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.642645"], ["updated_at", "2015-02-23 01:05:23.642645"]]
2208
+  (1.1ms) commit transaction
2209
+  (0.1ms) begin transaction
2210
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.647216"], ["updated_at", "2015-02-23 01:05:23.647216"]]
2211
+  (0.9ms) commit transaction
2212
+  (0.1ms) begin transaction
2213
+ SQL (0.4ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:05:23.653069"], ["id", 174]]
2214
+  (1.0ms) commit transaction
2215
+  (0.1ms) begin transaction
2216
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.657770"], ["updated_at", "2015-02-23 01:05:23.657770"]]
2217
+  (1.1ms) commit transaction
2218
+  (0.1ms) begin transaction
2219
+ SQL (0.3ms) UPDATE "messages" SET "body" = ?, "updated_at" = ? WHERE "messages"."id" = ? [["body", "bar"], ["updated_at", "2015-02-23 01:05:23.663113"], ["id", 175]]
2220
+  (1.2ms) commit transaction
2221
+  (0.1ms) begin transaction
2222
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.668125"], ["updated_at", "2015-02-23 01:05:23.668125"]]
2223
+  (1.1ms) commit transaction
2224
+  (0.1ms) begin transaction
2225
+ SQL (0.3ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 176]]
2226
+  (0.9ms) commit transaction
2227
+  (0.1ms) begin transaction
2228
+ SQL (0.3ms) INSERT INTO "messages" ("body", "created_at", "updated_at") VALUES (?, ?, ?) [["body", "foo"], ["created_at", "2015-02-23 01:05:23.676865"], ["updated_at", "2015-02-23 01:05:23.676865"]]
2229
+  (0.8ms) commit transaction
2230
+  (0.1ms) begin transaction
2231
+ SQL (0.4ms) DELETE FROM "messages" WHERE "messages"."id" = ? [["id", 177]]
2232
+  (1.0ms) commit transaction