traka 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -38,32 +38,33 @@ Each model should have a string "uuid" column. If you want to use a different co
38
38
  To access the current set of staged changes:
39
39
 
40
40
  ```ruby
41
- TrakaChange.staged_changes ## => [traka_change_record, ...]
41
+ TrakaChange.staged_changes #=> [traka_change_record, ...]
42
42
  ```
43
43
 
44
44
  Each TrakaChange record can be resolved to the original record (except "destroy"):
45
45
 
46
46
  ```ruby
47
- TrakaChange.staged_changes.first.get_record ## => record
47
+ TrakaChange.staged_changes.first.get_record #=> record
48
48
  ```
49
49
 
50
50
  To fetch a changeset across multiple versions. Assuming current version is 5, to get changes from v2 onwards:
51
51
 
52
52
  ```ruby
53
- TrakaChange.changes_from(2) ## => [traka_change_record, ...]
53
+ TrakaChange.changes_from(2) #=> [traka_change_record, ...]
54
54
  ```
55
55
 
56
56
  Or just get changes from v2 to v4:
57
57
 
58
58
  ```ruby
59
- TrakaChange.changes_in_range(2, 4) ## => [traka_change_record, ...]
59
+ TrakaChange.changes_in_range(2, 4) #=> [traka_change_record, ...]
60
60
  ```
61
61
 
62
62
  The above methods will automatically cleanse obsolete changes. To see everything:
63
63
 
64
64
  ```ruby
65
- TrakaChange.changes_from(2, false) ## => [traka_change_record, ...]
66
- TrakaChange.changes_in_range(2, 4, false) ## => [traka_change_record, ...]
65
+ TrakaChange.staged_changes(false) #=> [traka_change_record, ...]
66
+ TrakaChange.changes_from(2, false) #=> [traka_change_record, ...]
67
+ TrakaChange.changes_in_range(2, 4, false) #=> [traka_change_record, ...]
67
68
  ```
68
69
 
69
70
  To see the current version:
@@ -75,9 +76,9 @@ To see the current version:
75
76
  To publish a new version:
76
77
 
77
78
  ```ruby
78
- TrakaChange.latest_version ## => 1
79
+ TrakaChange.latest_version #=> 1
79
80
  TrakaChange.publish_new_version!
80
- TrakaChange.latest_version ## => 2
81
+ TrakaChange.latest_version #=> 2
81
82
  ```
82
83
 
83
84
  ## Example
@@ -89,6 +90,7 @@ Assuming models called Product and Car exist.
89
90
  b = Product.create(:name => "Product 2")
90
91
  c = Car.create(:name => "Car 1")
91
92
 
93
+ TrakaChange.latest_version #=> 1
92
94
  TrakaChange.staged_changes #=> [TrakaChange<create>, TrakaChange<create>, TrakaChange<create>]
93
95
 
94
96
  b.name = "New name"
@@ -99,6 +101,8 @@ Assuming models called Product and Car exist.
99
101
 
100
102
  TrakaChange.publish_new_version!
101
103
 
104
+ TrakaChange.latest_version #=> 2
105
+
102
106
  b.destroy
103
107
  a.name = "New name"
104
108
  a.save
@@ -109,7 +113,7 @@ Assuming models called Product and Car exist.
109
113
  a.name = "Another name"
110
114
  a.save
111
115
 
112
- # The update above is filtered because we already know "a" has been updated in this changeset.
116
+ # The second update above is filtered because we already know "a" has been updated in this changeset.
113
117
  TrakaChange.staged_changes #=> [TrakaChange<destroy>, TrakaChange<update>]
114
118
  TrakaChange.staged_changes.last.get_record #=> a
115
119
 
@@ -1,17 +1,26 @@
1
+ require 'rails/generators/migration'
2
+ require 'rails/generators/active_record'
3
+
1
4
  module Traka
2
5
  module Generators
3
6
  class InstallGenerator < ::Rails::Generators::Base
7
+ include Rails::Generators::Migration
8
+
4
9
  source_root File.expand_path("../templates", __FILE__)
5
10
 
6
11
  desc "Installs Traka into the app."
7
12
 
8
- def create_model
9
- generate "model", "traka_change klass:string uuid:string action_type:string version:integer"
13
+ def create_migration
14
+ migration_template 'migration.rb', 'db/migrate/create_traka_changes.rb'
10
15
  end
11
16
 
12
17
  def create_version_file
13
18
  directory "public/system"
14
19
  end
20
+
21
+ def self.next_migration_number dirname
22
+ ActiveRecord::Generators::Base.next_migration_number dirname
23
+ end
15
24
  end
16
25
  end
17
26
  end
@@ -1,12 +1,15 @@
1
1
  class CreateTrakaChanges < ActiveRecord::Migration
2
- def change
3
- create_table :traka_changes do |t|
2
+ def self.up
3
+ create_table :traka_changes, :force => true do |t|
4
4
  t.string :klass
5
5
  t.string :uuid
6
6
  t.string :action_type
7
7
  t.integer :version
8
-
9
8
  t.timestamps
10
9
  end
11
10
  end
11
+
12
+ def self.down
13
+ drop_table :traka_changes
14
+ end
12
15
  end
@@ -1,12 +1,10 @@
1
1
  require 'traka/is_trakable'
2
- require 'traka/is_traka'
2
+ require 'traka/change'
3
3
 
4
4
  module Traka
5
-
6
5
  class Railtie < Rails::Railtie
7
6
  config.app_generators do |g|
8
7
  g.templates.unshift File::expand_path('../templates', __FILE__)
9
8
  end
10
9
  end
11
-
12
10
  end
@@ -1,17 +1,12 @@
1
1
  module Traka
2
- module IsTraka
3
- extend ActiveSupport::Concern
4
-
5
- included do
6
- end
7
-
8
- module ClassMethods
9
- def is_traka(options={})
10
- before_save :set_version
2
+ class Change < ActiveRecord::Base
3
+ self.table_name = "traka_changes"
11
4
 
12
- include Traka::IsTraka::LocalInstanceMethods
13
- end
5
+ attr_accessible :klass, :action_type, :uuid, :version
6
+
7
+ before_save :set_version
14
8
 
9
+ class << self
15
10
  def latest_version
16
11
  begin
17
12
  File.read(version_path).to_i
@@ -83,18 +78,15 @@ module Traka
83
78
  end
84
79
  end
85
80
 
86
- module LocalInstanceMethods
87
- def set_version
88
- self.version = self.class.latest_version + 1
89
- end
90
-
91
- def get_record
92
- ar = ActiveRecord::Base.const_get(self.klass)
93
- ar.where(ar.traka_uuid => self.uuid).first
94
- end
81
+ def get_record
82
+ ar = ActiveRecord::Base.const_get(self.klass)
83
+ ar.where(ar.traka_uuid => self.uuid).first
95
84
  end
96
85
 
86
+ private
87
+
88
+ def set_version
89
+ self.version = self.class.latest_version + 1
90
+ end
97
91
  end
98
92
  end
99
-
100
- ActiveRecord::Base.send :include, Traka::IsTraka
@@ -38,9 +38,9 @@ module Traka
38
38
  end
39
39
 
40
40
  def record_traka_change(action_type)
41
- TrakaChange.create(:klass => self.class.to_s,
42
- :uuid => self.attributes[self.class.traka_uuid],
43
- :action_type => action_type)
41
+ Traka::Change.create(:klass => self.class.to_s,
42
+ :uuid => self.attributes[self.class.traka_uuid],
43
+ :action_type => action_type)
44
44
  end
45
45
  end
46
46
  end
@@ -1,3 +1,3 @@
1
1
  module Traka
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -0,0 +1,15 @@
1
+ class CreateTrakaChanges < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :traka_changes, :force => true do |t|
4
+ t.string :klass
5
+ t.string :uuid
6
+ t.string :action_type
7
+ t.integer :version
8
+ t.timestamps
9
+ end
10
+ end
11
+
12
+ def self.down
13
+ drop_table :traka_changes
14
+ end
15
+ end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended to check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 20131223111034) do
14
+ ActiveRecord::Schema.define(:version => 20140102053940) do
15
15
 
16
16
  create_table "cheeses", :force => true do |t|
17
17
  t.string "name"
Binary file
@@ -101,3 +101,42 @@ Connecting to database specified by database.yml
101
101
  Connecting to database specified by database.yml
102
102
  Connecting to database specified by database.yml
103
103
  Connecting to database specified by database.yml
104
+ Connecting to database specified by database.yml
105
+ Connecting to database specified by database.yml
106
+  (0.9ms) select sqlite_version(*)
107
+  (35.4ms) CREATE TABLE "cheeses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
108
+  (8.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "uuid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
109
+  (23.7ms) CREATE TABLE "traka_changes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "klass" varchar(255), "uuid" varchar(255), "action_type" varchar(255), "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
110
+  (13.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
111
+  (25.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
112
+  (0.1ms) SELECT version FROM "schema_migrations"
113
+  (39.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20131223111034')
114
+  (11.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20131219051348')
115
+  (34.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131219051328')
116
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
117
+ Connecting to database specified by database.yml
118
+ Connecting to database specified by database.yml
119
+ Connecting to database specified by database.yml
120
+ Connecting to database specified by database.yml
121
+  (1.0ms) select sqlite_version(*)
122
+  (36.8ms) CREATE TABLE "cheeses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
123
+  (37.3ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "uuid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
124
+  (11.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
125
+  (17.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
126
+  (0.1ms) SELECT version FROM "schema_migrations"
127
+  (31.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20131223111034')
128
+  (22.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20131219051348')
129
+  (16.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131219051328')
130
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
131
+ Connecting to database specified by database.yml
132
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
133
+ Migrating to CreateProducts (20131219051328)
134
+ Migrating to CreateCheeses (20131219051348)
135
+ Migrating to CreateTrakaChanges (20140102053940)
136
+  (0.0ms) select sqlite_version(*)
137
+  (0.0ms) begin transaction
138
+  (0.3ms) CREATE TABLE "traka_changes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "klass" varchar(255), "uuid" varchar(255), "action_type" varchar(255), "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
139
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140102053940')
140
+  (37.2ms) commit transaction
141
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
142
+ Connecting to database specified by database.yml
@@ -279366,3 +279366,2760 @@ Binary data inserted for `string` type on column `uuid`
279366
279366
   (20.5ms) commit transaction
279367
279367
   (0.2ms) begin transaction
279368
279368
   (0.1ms) rollback transaction
279369
+ Connecting to database specified by database.yml
279370
+  (0.3ms) begin transaction
279371
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279372
+  (0.1ms) SAVEPOINT active_record_1
279373
+ SQL (22.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279375
+  (0.0ms) SAVEPOINT active_record_1
279376
+ Binary data inserted for `string` type on column `uuid`
279377
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7a284f815bb730c90aeef6a193068aa182de3e2d"], ["version", 2]]
279378
+ Binary data inserted for `string` type on column `uuid`
279379
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7a284f815bb730c90aeef6a193068aa182de3e2d"]]
279380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279381
+  (0.0ms) SAVEPOINT active_record_1
279382
+ Binary data inserted for `string` type on column `uuid`
279383
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "c99882247da70ae88927800d5d2ae05bda1a1805"], ["version", 2]]
279384
+ Binary data inserted for `string` type on column `code`
279385
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c99882247da70ae88927800d5d2ae05bda1a1805"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279387
+  (0.0ms) SAVEPOINT active_record_1
279388
+ Binary data inserted for `string` type on column `uuid`
279389
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7a284f815bb730c90aeef6a193068aa182de3e2d"], ["version", 2]]
279390
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
279391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279392
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279393
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279394
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279395
+  (0.1ms) rollback transaction
279396
+  (0.0ms) begin transaction
279397
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279398
+  (0.0ms) SAVEPOINT active_record_1
279399
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279401
+  (0.0ms) SAVEPOINT active_record_1
279402
+ Binary data inserted for `string` type on column `uuid`
279403
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"], ["version", 2]]
279404
+ Binary data inserted for `string` type on column `uuid`
279405
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"]]
279406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279407
+  (0.0ms) SAVEPOINT active_record_1
279408
+ Binary data inserted for `string` type on column `uuid`
279409
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "48c545a97b9d02ef9dbe6f4cd040940cc83b9ff1"], ["version", 2]]
279410
+ Binary data inserted for `string` type on column `code`
279411
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "48c545a97b9d02ef9dbe6f4cd040940cc83b9ff1"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279413
+  (0.0ms) SAVEPOINT active_record_1
279414
+ Binary data inserted for `string` type on column `uuid`
279415
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"], ["version", 2]]
279416
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.252007' WHERE "products"."id" = 303
279417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279418
+  (0.0ms) SAVEPOINT active_record_1
279419
+ Binary data inserted for `string` type on column `uuid`
279420
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"], ["version", 2]]
279421
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:02.254116' WHERE "products"."id" = 303
279422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279423
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279424
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279425
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279426
+  (0.1ms) rollback transaction
279427
+  (0.0ms) begin transaction
279428
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279429
+  (0.0ms) SAVEPOINT active_record_1
279430
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279432
+  (0.0ms) SAVEPOINT active_record_1
279433
+ Binary data inserted for `string` type on column `uuid`
279434
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"], ["version", 2]]
279435
+ Binary data inserted for `string` type on column `uuid`
279436
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"]]
279437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279438
+  (0.0ms) SAVEPOINT active_record_1
279439
+ Binary data inserted for `string` type on column `uuid`
279440
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "1d76aa1d2f22ed3c2e424c350e1f63627ec687a2"], ["version", 2]]
279441
+ Binary data inserted for `string` type on column `code`
279442
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1d76aa1d2f22ed3c2e424c350e1f63627ec687a2"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279444
+  (0.0ms) SAVEPOINT active_record_1
279445
+ Binary data inserted for `string` type on column `uuid`
279446
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"], ["version", 3]]
279447
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.263094' WHERE "products"."id" = 303
279448
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279449
+  (0.0ms) SAVEPOINT active_record_1
279450
+ Binary data inserted for `string` type on column `uuid`
279451
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "1d76aa1d2f22ed3c2e424c350e1f63627ec687a2"], ["version", 3]]
279452
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.265326' WHERE "cheeses"."id" = 294
279453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279454
+  (0.0ms) SAVEPOINT active_record_1
279455
+ Binary data inserted for `string` type on column `uuid`
279456
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"], ["version", 3]]
279457
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
279458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279459
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279460
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279461
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279462
+  (0.1ms) rollback transaction
279463
+  (0.0ms) begin transaction
279464
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279465
+  (0.0ms) SAVEPOINT active_record_1
279466
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279468
+  (0.0ms) SAVEPOINT active_record_1
279469
+ Binary data inserted for `string` type on column `uuid`
279470
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 2]]
279471
+ Binary data inserted for `string` type on column `uuid`
279472
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"]]
279473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279474
+  (0.0ms) SAVEPOINT active_record_1
279475
+ Binary data inserted for `string` type on column `uuid`
279476
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "c4650a3f0e15202b31f5d930b2443d0528fbf27f"], ["version", 2]]
279477
+ Binary data inserted for `string` type on column `code`
279478
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c4650a3f0e15202b31f5d930b2443d0528fbf27f"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279480
+  (0.0ms) SAVEPOINT active_record_1
279481
+ Binary data inserted for `string` type on column `uuid`
279482
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 3]]
279483
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.276271' WHERE "products"."id" = 303
279484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279485
+  (0.0ms) SAVEPOINT active_record_1
279486
+ Binary data inserted for `string` type on column `uuid`
279487
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 3]]
279488
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:02.277946' WHERE "products"."id" = 303
279489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279490
+  (0.0ms) SAVEPOINT active_record_1
279491
+ Binary data inserted for `string` type on column `uuid`
279492
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 3]]
279493
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-01 06:42:02.279533' WHERE "products"."id" = 303
279494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279495
+  (0.0ms) SAVEPOINT active_record_1
279496
+ Binary data inserted for `string` type on column `uuid`
279497
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "c4650a3f0e15202b31f5d930b2443d0528fbf27f"], ["version", 3]]
279498
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.280954' WHERE "cheeses"."id" = 294
279499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279500
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279501
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279502
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279503
+  (0.1ms) rollback transaction
279504
+  (0.0ms) begin transaction
279505
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279506
+  (0.0ms) SAVEPOINT active_record_1
279507
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279509
+  (0.0ms) SAVEPOINT active_record_1
279510
+ Binary data inserted for `string` type on column `uuid`
279511
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
279512
+ Binary data inserted for `string` type on column `uuid`
279513
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"]]
279514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279515
+  (0.0ms) SAVEPOINT active_record_1
279516
+ Binary data inserted for `string` type on column `uuid`
279517
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7b8dc95287d6916c6be66fb0dde7c315fffdc130"], ["version", 2]]
279518
+ Binary data inserted for `string` type on column `code`
279519
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "7b8dc95287d6916c6be66fb0dde7c315fffdc130"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279521
+  (0.0ms) SAVEPOINT active_record_1
279522
+ Binary data inserted for `string` type on column `uuid`
279523
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
279524
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.289649' WHERE "products"."id" = 303
279525
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279526
+  (0.0ms) SAVEPOINT active_record_1
279527
+ Binary data inserted for `string` type on column `uuid`
279528
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
279529
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:02.291113' WHERE "products"."id" = 303
279530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279531
+  (0.0ms) SAVEPOINT active_record_1
279532
+ Binary data inserted for `string` type on column `uuid`
279533
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
279534
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
279535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279536
+  (0.0ms) SAVEPOINT active_record_1
279537
+ Binary data inserted for `string` type on column `uuid`
279538
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7b8dc95287d6916c6be66fb0dde7c315fffdc130"], ["version", 2]]
279539
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 294]]
279540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279541
+  (0.1ms) SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279542
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279543
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279544
+  (0.1ms) rollback transaction
279545
+  (0.0ms) begin transaction
279546
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279547
+  (0.0ms) SAVEPOINT active_record_1
279548
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279550
+  (0.0ms) SAVEPOINT active_record_1
279551
+ Binary data inserted for `string` type on column `uuid`
279552
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6c14969fefa59331528fe3052979b6435e9ea668"], ["version", 2]]
279553
+ Binary data inserted for `string` type on column `uuid`
279554
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6c14969fefa59331528fe3052979b6435e9ea668"]]
279555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279556
+  (0.0ms) SAVEPOINT active_record_1
279557
+ Binary data inserted for `string` type on column `uuid`
279558
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "e2a7346b4fc5bcc4768a5ecc7bc22a639871c2c3"], ["version", 2]]
279559
+ Binary data inserted for `string` type on column `code`
279560
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e2a7346b4fc5bcc4768a5ecc7bc22a639871c2c3"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279562
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279563
+  (0.0ms) SAVEPOINT active_record_1
279564
+ Binary data inserted for `string` type on column `uuid`
279565
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "0a10e6982c8f07c3dd652005db32b6e2d3e90f3b"], ["version", 3]]
279566
+ Binary data inserted for `string` type on column `uuid`
279567
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "0a10e6982c8f07c3dd652005db32b6e2d3e90f3b"]]
279568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279569
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279570
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279571
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
279572
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
279573
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
279574
+  (0.1ms) rollback transaction
279575
+  (0.0ms) begin transaction
279576
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279577
+  (0.0ms) SAVEPOINT active_record_1
279578
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279580
+  (0.0ms) SAVEPOINT active_record_1
279581
+ Binary data inserted for `string` type on column `uuid`
279582
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "b756a33a52b65035605a2928b2f5dc6dc7c4fed2"], ["version", 2]]
279583
+ Binary data inserted for `string` type on column `uuid`
279584
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "b756a33a52b65035605a2928b2f5dc6dc7c4fed2"]]
279585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279586
+  (0.0ms) SAVEPOINT active_record_1
279587
+ Binary data inserted for `string` type on column `uuid`
279588
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "5f48675f6350eb87bc8c0d0852e993dd8e4986ee"], ["version", 2]]
279589
+ Binary data inserted for `string` type on column `code`
279590
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "5f48675f6350eb87bc8c0d0852e993dd8e4986ee"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279592
+  (0.1ms) SAVEPOINT active_record_1
279593
+ Binary data inserted for `string` type on column `uuid`
279594
+ SQL (0.6ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "b756a33a52b65035605a2928b2f5dc6dc7c4fed2"], ["version", 3]]
279595
+  (0.2ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.327188' WHERE "products"."id" = 303
279596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279597
+  (0.1ms) SAVEPOINT active_record_1
279598
+ Binary data inserted for `string` type on column `uuid`
279599
+ SQL (0.5ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "5f48675f6350eb87bc8c0d0852e993dd8e4986ee"], ["version", 3]]
279600
+ SQL (0.2ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 294]]
279601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279602
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279603
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279604
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279605
+  (0.1ms) rollback transaction
279606
+  (0.0ms) begin transaction
279607
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279608
+  (0.0ms) SAVEPOINT active_record_1
279609
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279611
+  (0.0ms) SAVEPOINT active_record_1
279612
+ Binary data inserted for `string` type on column `uuid`
279613
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "89dd237b7aadab6a01f4f1177ea8a68a509a68ff"], ["version", 2]]
279614
+ Binary data inserted for `string` type on column `uuid`
279615
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "89dd237b7aadab6a01f4f1177ea8a68a509a68ff"]]
279616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279617
+  (0.0ms) SAVEPOINT active_record_1
279618
+ Binary data inserted for `string` type on column `uuid`
279619
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "1ed85a0c2f133c518c36983aa498a24e426ab59f"], ["version", 2]]
279620
+ Binary data inserted for `string` type on column `code`
279621
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1ed85a0c2f133c518c36983aa498a24e426ab59f"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279623
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279624
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279625
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279626
+  (0.1ms) rollback transaction
279627
+  (0.0ms) begin transaction
279628
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279629
+  (0.0ms) SAVEPOINT active_record_1
279630
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279631
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279632
+  (0.1ms) rollback transaction
279633
+  (0.0ms) begin transaction
279634
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279635
+  (0.0ms) SAVEPOINT active_record_1
279636
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279638
+  (0.0ms) SAVEPOINT active_record_1
279639
+ Binary data inserted for `string` type on column `uuid`
279640
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "2b774c34d1234463b6c00c6f6def660d72a62d51"], ["version", 2]]
279641
+ Binary data inserted for `string` type on column `uuid`
279642
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "2b774c34d1234463b6c00c6f6def660d72a62d51"]]
279643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279644
+  (0.0ms) SAVEPOINT active_record_1
279645
+ Binary data inserted for `string` type on column `uuid`
279646
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "a226617199f4bb9c60803b01ca09b5a118736d16"], ["version", 2]]
279647
+ Binary data inserted for `string` type on column `code`
279648
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a226617199f4bb9c60803b01ca09b5a118736d16"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
279649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279650
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279651
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = '2b774c34d1234463b6c00c6f6def660d72a62d51' LIMIT 1
279652
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279653
+ Cheese Load (0.2ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'a226617199f4bb9c60803b01ca09b5a118736d16' LIMIT 1
279654
+  (0.1ms) rollback transaction
279655
+  (0.0ms) begin transaction
279656
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279657
+  (0.0ms) SAVEPOINT active_record_1
279658
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279660
+  (0.1ms) rollback transaction
279661
+  (0.0ms) begin transaction
279662
+  (0.0ms) rollback transaction
279663
+ Connecting to database specified by database.yml
279664
+  (0.3ms) begin transaction
279665
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279666
+  (0.0ms) SAVEPOINT active_record_1
279667
+ SQL (22.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279669
+  (0.0ms) SAVEPOINT active_record_1
279670
+ Binary data inserted for `string` type on column `uuid`
279671
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a4d64eb4cbdcf36c3c573c9e293a19b614429ef8"], ["version", 2]]
279672
+ Binary data inserted for `string` type on column `uuid`
279673
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a4d64eb4cbdcf36c3c573c9e293a19b614429ef8"]]
279674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279675
+  (0.0ms) SAVEPOINT active_record_1
279676
+ Binary data inserted for `string` type on column `uuid`
279677
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "cc447dcf932965644e0c5a7cfe9df909869ea738"], ["version", 2]]
279678
+ Binary data inserted for `string` type on column `code`
279679
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "cc447dcf932965644e0c5a7cfe9df909869ea738"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279681
+  (0.0ms) SAVEPOINT active_record_1
279682
+ Binary data inserted for `string` type on column `uuid`
279683
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a4d64eb4cbdcf36c3c573c9e293a19b614429ef8"], ["version", 2]]
279684
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
279685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279686
+ TrakaChange Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279687
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279688
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279689
+  (0.1ms) rollback transaction
279690
+  (0.0ms) begin transaction
279691
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279692
+  (0.0ms) SAVEPOINT active_record_1
279693
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279695
+  (0.0ms) SAVEPOINT active_record_1
279696
+ Binary data inserted for `string` type on column `uuid`
279697
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"], ["version", 2]]
279698
+ Binary data inserted for `string` type on column `uuid`
279699
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"]]
279700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279701
+  (0.0ms) SAVEPOINT active_record_1
279702
+ Binary data inserted for `string` type on column `uuid`
279703
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "34a354c33432c5dd0aca203c3afa875e752cb794"], ["version", 2]]
279704
+ Binary data inserted for `string` type on column `code`
279705
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "34a354c33432c5dd0aca203c3afa875e752cb794"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279707
+  (0.0ms) SAVEPOINT active_record_1
279708
+ Binary data inserted for `string` type on column `uuid`
279709
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"], ["version", 2]]
279710
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.635648' WHERE "products"."id" = 303
279711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279712
+  (0.0ms) SAVEPOINT active_record_1
279713
+ Binary data inserted for `string` type on column `uuid`
279714
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"], ["version", 2]]
279715
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:21.638053' WHERE "products"."id" = 303
279716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279717
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279718
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279719
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279720
+  (0.1ms) rollback transaction
279721
+  (0.0ms) begin transaction
279722
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279723
+  (0.0ms) SAVEPOINT active_record_1
279724
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279726
+  (0.0ms) SAVEPOINT active_record_1
279727
+ Binary data inserted for `string` type on column `uuid`
279728
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"], ["version", 2]]
279729
+ Binary data inserted for `string` type on column `uuid`
279730
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"]]
279731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279732
+  (0.0ms) SAVEPOINT active_record_1
279733
+ Binary data inserted for `string` type on column `uuid`
279734
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "3494534ccba7e8ed1b5c3452b5199a9989c7f245"], ["version", 2]]
279735
+ Binary data inserted for `string` type on column `code`
279736
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "3494534ccba7e8ed1b5c3452b5199a9989c7f245"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279738
+  (0.0ms) SAVEPOINT active_record_1
279739
+ Binary data inserted for `string` type on column `uuid`
279740
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"], ["version", 3]]
279741
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.646940' WHERE "products"."id" = 303
279742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279743
+  (0.0ms) SAVEPOINT active_record_1
279744
+ Binary data inserted for `string` type on column `uuid`
279745
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "3494534ccba7e8ed1b5c3452b5199a9989c7f245"], ["version", 3]]
279746
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.649187' WHERE "cheeses"."id" = 294
279747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279748
+  (0.0ms) SAVEPOINT active_record_1
279749
+ Binary data inserted for `string` type on column `uuid`
279750
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"], ["version", 3]]
279751
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
279752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279753
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279754
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279755
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279756
+  (0.1ms) rollback transaction
279757
+  (0.0ms) begin transaction
279758
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279759
+  (0.0ms) SAVEPOINT active_record_1
279760
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279762
+  (0.0ms) SAVEPOINT active_record_1
279763
+ Binary data inserted for `string` type on column `uuid`
279764
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 2]]
279765
+ Binary data inserted for `string` type on column `uuid`
279766
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"]]
279767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279768
+  (0.0ms) SAVEPOINT active_record_1
279769
+ Binary data inserted for `string` type on column `uuid`
279770
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "d380a8832db8e175db2d9841ba23fb8ddf26fd24"], ["version", 2]]
279771
+ Binary data inserted for `string` type on column `code`
279772
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "d380a8832db8e175db2d9841ba23fb8ddf26fd24"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279774
+  (0.0ms) SAVEPOINT active_record_1
279775
+ Binary data inserted for `string` type on column `uuid`
279776
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 3]]
279777
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.660288' WHERE "products"."id" = 303
279778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279779
+  (0.0ms) SAVEPOINT active_record_1
279780
+ Binary data inserted for `string` type on column `uuid`
279781
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 3]]
279782
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:21.661929' WHERE "products"."id" = 303
279783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279784
+  (0.1ms) SAVEPOINT active_record_1
279785
+ Binary data inserted for `string` type on column `uuid`
279786
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 3]]
279787
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-01 06:42:21.663480' WHERE "products"."id" = 303
279788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279789
+  (0.0ms) SAVEPOINT active_record_1
279790
+ Binary data inserted for `string` type on column `uuid`
279791
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "d380a8832db8e175db2d9841ba23fb8ddf26fd24"], ["version", 3]]
279792
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.664999' WHERE "cheeses"."id" = 294
279793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279794
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279795
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279796
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279797
+  (0.1ms) rollback transaction
279798
+  (0.0ms) begin transaction
279799
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279800
+  (0.0ms) SAVEPOINT active_record_1
279801
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279803
+  (0.0ms) SAVEPOINT active_record_1
279804
+ Binary data inserted for `string` type on column `uuid`
279805
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
279806
+ Binary data inserted for `string` type on column `uuid`
279807
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"]]
279808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279809
+  (0.0ms) SAVEPOINT active_record_1
279810
+ Binary data inserted for `string` type on column `uuid`
279811
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a2a62e0dc0f9eb085445493d7d5265dadd3a01a2"], ["version", 2]]
279812
+ Binary data inserted for `string` type on column `code`
279813
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a2a62e0dc0f9eb085445493d7d5265dadd3a01a2"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279815
+  (0.0ms) SAVEPOINT active_record_1
279816
+ Binary data inserted for `string` type on column `uuid`
279817
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
279818
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.674357' WHERE "products"."id" = 303
279819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279820
+  (0.0ms) SAVEPOINT active_record_1
279821
+ Binary data inserted for `string` type on column `uuid`
279822
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
279823
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:21.675845' WHERE "products"."id" = 303
279824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279825
+  (0.0ms) SAVEPOINT active_record_1
279826
+ Binary data inserted for `string` type on column `uuid`
279827
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
279828
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
279829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279830
+  (0.0ms) SAVEPOINT active_record_1
279831
+ Binary data inserted for `string` type on column `uuid`
279832
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a2a62e0dc0f9eb085445493d7d5265dadd3a01a2"], ["version", 2]]
279833
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 294]]
279834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279835
+  (0.1ms) SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279836
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279837
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279838
+  (0.1ms) rollback transaction
279839
+  (0.0ms) begin transaction
279840
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279841
+  (0.0ms) SAVEPOINT active_record_1
279842
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279844
+  (0.0ms) SAVEPOINT active_record_1
279845
+ Binary data inserted for `string` type on column `uuid`
279846
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e92b9c3a4b4eb158a002d0e76c27d6f8bf487eab"], ["version", 2]]
279847
+ Binary data inserted for `string` type on column `uuid`
279848
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e92b9c3a4b4eb158a002d0e76c27d6f8bf487eab"]]
279849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279850
+  (0.0ms) SAVEPOINT active_record_1
279851
+ Binary data inserted for `string` type on column `uuid`
279852
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11a1a3e6b09bf85a362f30928f5aec8db079a5d6"], ["version", 2]]
279853
+ Binary data inserted for `string` type on column `code`
279854
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "11a1a3e6b09bf85a362f30928f5aec8db079a5d6"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279856
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279857
+  (0.0ms) SAVEPOINT active_record_1
279858
+ Binary data inserted for `string` type on column `uuid`
279859
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "c56cedc0f89e1a98501da6eb34093a79bdab6da4"], ["version", 3]]
279860
+ Binary data inserted for `string` type on column `uuid`
279861
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "c56cedc0f89e1a98501da6eb34093a79bdab6da4"]]
279862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279863
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279864
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279865
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
279866
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
279867
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
279868
+  (0.1ms) rollback transaction
279869
+  (0.0ms) begin transaction
279870
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279871
+  (0.0ms) SAVEPOINT active_record_1
279872
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279874
+  (0.0ms) SAVEPOINT active_record_1
279875
+ Binary data inserted for `string` type on column `uuid`
279876
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "992c8c2d84fe15ef464d66dd55083f4f4fa5f864"], ["version", 2]]
279877
+ Binary data inserted for `string` type on column `uuid`
279878
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "992c8c2d84fe15ef464d66dd55083f4f4fa5f864"]]
279879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279880
+  (0.0ms) SAVEPOINT active_record_1
279881
+ Binary data inserted for `string` type on column `uuid`
279882
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9d48171b61c17cfa726ddc9a7dac2c593c1238b3"], ["version", 2]]
279883
+ Binary data inserted for `string` type on column `code`
279884
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "9d48171b61c17cfa726ddc9a7dac2c593c1238b3"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279886
+  (0.0ms) SAVEPOINT active_record_1
279887
+ Binary data inserted for `string` type on column `uuid`
279888
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "992c8c2d84fe15ef464d66dd55083f4f4fa5f864"], ["version", 3]]
279889
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.698769' WHERE "products"."id" = 303
279890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279891
+  (0.0ms) SAVEPOINT active_record_1
279892
+ Binary data inserted for `string` type on column `uuid`
279893
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9d48171b61c17cfa726ddc9a7dac2c593c1238b3"], ["version", 3]]
279894
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 294]]
279895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279896
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279897
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279898
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
279899
+  (0.1ms) rollback transaction
279900
+  (0.0ms) begin transaction
279901
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279902
+  (0.0ms) SAVEPOINT active_record_1
279903
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279905
+  (0.0ms) SAVEPOINT active_record_1
279906
+ Binary data inserted for `string` type on column `uuid`
279907
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "12e4f3bf9a18129ec79e8b25d09b2193b87458ac"], ["version", 2]]
279908
+ Binary data inserted for `string` type on column `uuid`
279909
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "12e4f3bf9a18129ec79e8b25d09b2193b87458ac"]]
279910
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279911
+  (0.0ms) SAVEPOINT active_record_1
279912
+ Binary data inserted for `string` type on column `uuid`
279913
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a8de2ca4f6e5ff86cd92b44caa6786fb94380078"], ["version", 2]]
279914
+ Binary data inserted for `string` type on column `code`
279915
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a8de2ca4f6e5ff86cd92b44caa6786fb94380078"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279917
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279918
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279919
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279920
+  (0.1ms) rollback transaction
279921
+  (0.0ms) begin transaction
279922
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279923
+  (0.0ms) SAVEPOINT active_record_1
279924
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279926
+  (0.2ms) rollback transaction
279927
+  (0.1ms) begin transaction
279928
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
279929
+  (0.1ms) SAVEPOINT active_record_1
279930
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279932
+  (0.1ms) SAVEPOINT active_record_1
279933
+ Binary data inserted for `string` type on column `uuid`
279934
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ee6a9d9886fc595da0855e3160b9718813888875"], ["version", 2]]
279935
+ Binary data inserted for `string` type on column `uuid`
279936
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ee6a9d9886fc595da0855e3160b9718813888875"]]
279937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279938
+  (0.0ms) SAVEPOINT active_record_1
279939
+ Binary data inserted for `string` type on column `uuid`
279940
+ SQL (0.5ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "979a121eaf4d23d6c72430d0dd5ed81b3b9e607d"], ["version", 2]]
279941
+ Binary data inserted for `string` type on column `code`
279942
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "979a121eaf4d23d6c72430d0dd5ed81b3b9e607d"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279943
+  (0.1ms) RELEASE SAVEPOINT active_record_1
279944
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279945
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = 'ee6a9d9886fc595da0855e3160b9718813888875' LIMIT 1
279946
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
279947
+ Cheese Load (0.1ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = '979a121eaf4d23d6c72430d0dd5ed81b3b9e607d' LIMIT 1
279948
+  (0.1ms) rollback transaction
279949
+  (0.0ms) begin transaction
279950
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
279951
+  (0.1ms) SAVEPOINT active_record_1
279952
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
279954
+  (0.1ms) rollback transaction
279955
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279956
+  (0.0ms) begin transaction
279957
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
279958
+  (67.5ms) commit transaction
279959
+  (0.1ms) begin transaction
279960
+ Binary data inserted for `string` type on column `uuid`
279961
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "8937fb5ca3e1c278402a5fab9afb2da1e70e3376"], ["version", 2]]
279962
+ Binary data inserted for `string` type on column `code`
279963
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8937fb5ca3e1c278402a5fab9afb2da1e70e3376"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279964
+  (13.4ms) commit transaction
279965
+ TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
279966
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
279967
+  (0.1ms) begin transaction
279968
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 880]]
279969
+  (32.4ms) commit transaction
279970
+  (0.1ms) begin transaction
279971
+ Binary data inserted for `string` type on column `uuid`
279972
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ce5759a6251f42c27e91ac90a331f174b800a088"], ["version", 2]]
279973
+ Binary data inserted for `string` type on column `code`
279974
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "ce5759a6251f42c27e91ac90a331f174b800a088"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279975
+  (23.4ms) commit transaction
279976
+  (0.1ms) begin transaction
279977
+ Binary data inserted for `string` type on column `uuid`
279978
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ce5759a6251f42c27e91ac90a331f174b800a088"], ["version", 2]]
279979
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 295]]
279980
+  (10.4ms) commit transaction
279981
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
279982
+ TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
279983
+  (0.1ms) begin transaction
279984
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 881]]
279985
+  (23.6ms) commit transaction
279986
+  (0.2ms) begin transaction
279987
+ SQL (0.4ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 882]]
279988
+  (9.1ms) commit transaction
279989
+  (0.1ms) begin transaction
279990
+ Binary data inserted for `string` type on column `uuid`
279991
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e4f33583e64c88aed5d76bd7a3efb13eb86c3357"], ["version", 2]]
279992
+ Binary data inserted for `string` type on column `code`
279993
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e4f33583e64c88aed5d76bd7a3efb13eb86c3357"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
279994
+  (9.4ms) commit transaction
279995
+  (0.1ms) begin transaction
279996
+ Binary data inserted for `string` type on column `uuid`
279997
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e4f33583e64c88aed5d76bd7a3efb13eb86c3357"], ["version", 2]]
279998
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:42:21.999123' WHERE "cheeses"."id" = 296
279999
+  (18.9ms) commit transaction
280000
+ TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280001
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280002
+  (0.1ms) begin transaction
280003
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 883]]
280004
+  (8.0ms) commit transaction
280005
+  (0.1ms) begin transaction
280006
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 884]]
280007
+  (34.4ms) commit transaction
280008
+  (0.1ms) begin transaction
280009
+ Binary data inserted for `string` type on column `uuid`
280010
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "c1708e9cb020fe57a8f41891b992537cecba2c75"], ["version", 2]]
280011
+ Binary data inserted for `string` type on column `code`
280012
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c1708e9cb020fe57a8f41891b992537cecba2c75"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00]]
280013
+  (84.6ms) commit transaction
280014
+ TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" 
280015
+  (0.1ms) begin transaction
280016
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 885]]
280017
+  (11.4ms) commit transaction
280018
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280019
+  (0.1ms) begin transaction
280020
+ Binary data inserted for `string` type on column `uuid`
280021
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "1628722bb00aa951880431156f6be5c1896fcca0"], ["version", 2]]
280022
+ Binary data inserted for `string` type on column `uuid`
280023
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "1628722bb00aa951880431156f6be5c1896fcca0"]]
280024
+  (26.0ms) commit transaction
280025
+ TrakaChange Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280026
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280027
+  (0.1ms) begin transaction
280028
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 886]]
280029
+  (9.7ms) commit transaction
280030
+  (0.1ms) begin transaction
280031
+ Binary data inserted for `string` type on column `uuid`
280032
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "d4e70b0de18a4e5c4bcc8088191fea23f18a69f0"], ["version", 2]]
280033
+ Binary data inserted for `string` type on column `uuid`
280034
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "d4e70b0de18a4e5c4bcc8088191fea23f18a69f0"]]
280035
+  (12.2ms) commit transaction
280036
+  (0.1ms) begin transaction
280037
+ Binary data inserted for `string` type on column `uuid`
280038
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "d4e70b0de18a4e5c4bcc8088191fea23f18a69f0"], ["version", 2]]
280039
+ SQL (0.2ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 304]]
280040
+  (25.1ms) commit transaction
280041
+ TrakaChange Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280042
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280043
+  (0.1ms) begin transaction
280044
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 887]]
280045
+  (7.7ms) commit transaction
280046
+  (0.1ms) begin transaction
280047
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 888]]
280048
+  (7.9ms) commit transaction
280049
+  (0.1ms) begin transaction
280050
+ Binary data inserted for `string` type on column `uuid`
280051
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "f61bb9b3c02b37a1f421935ed8543fbc52a0bdc0"], ["version", 2]]
280052
+ Binary data inserted for `string` type on column `uuid`
280053
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "f61bb9b3c02b37a1f421935ed8543fbc52a0bdc0"]]
280054
+  (8.8ms) commit transaction
280055
+  (0.1ms) begin transaction
280056
+ Binary data inserted for `string` type on column `uuid`
280057
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "f61bb9b3c02b37a1f421935ed8543fbc52a0bdc0"], ["version", 2]]
280058
+  (0.2ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:42:22.314723' WHERE "products"."id" = 305
280059
+  (22.4ms) commit transaction
280060
+ TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280061
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280062
+  (0.1ms) begin transaction
280063
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 889]]
280064
+  (36.0ms) commit transaction
280065
+  (0.1ms) begin transaction
280066
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 890]]
280067
+  (8.5ms) commit transaction
280068
+ TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280069
+  (0.1ms) begin transaction
280070
+ Binary data inserted for `string` type on column `uuid`
280071
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "8727d196a90cda8043e2325fc178afc42f012868"], ["version", 2]]
280072
+ Binary data inserted for `string` type on column `uuid`
280073
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "8727d196a90cda8043e2325fc178afc42f012868"]]
280074
+  (27.9ms) commit transaction
280075
+  (0.2ms) begin transaction
280076
+  (0.1ms) rollback transaction
280077
+ Connecting to database specified by database.yml
280078
+  (0.3ms) begin transaction
280079
+  (0.0ms) rollback transaction
280080
+  (0.0ms) begin transaction
280081
+  (0.0ms) rollback transaction
280082
+  (0.0ms) begin transaction
280083
+  (0.0ms) rollback transaction
280084
+  (0.0ms) begin transaction
280085
+  (0.0ms) rollback transaction
280086
+  (0.0ms) begin transaction
280087
+  (0.0ms) rollback transaction
280088
+  (0.0ms) begin transaction
280089
+  (0.0ms) rollback transaction
280090
+  (0.0ms) begin transaction
280091
+  (0.0ms) rollback transaction
280092
+  (0.0ms) begin transaction
280093
+  (0.0ms) rollback transaction
280094
+  (0.0ms) begin transaction
280095
+  (0.0ms) rollback transaction
280096
+  (0.0ms) begin transaction
280097
+  (0.0ms) rollback transaction
280098
+  (0.0ms) begin transaction
280099
+  (0.0ms) rollback transaction
280100
+  (0.1ms) begin transaction
280101
+  (0.0ms) rollback transaction
280102
+ Connecting to database specified by database.yml
280103
+  (0.3ms) begin transaction
280104
+  (0.0ms) rollback transaction
280105
+  (0.0ms) begin transaction
280106
+  (0.0ms) rollback transaction
280107
+  (0.0ms) begin transaction
280108
+  (0.0ms) rollback transaction
280109
+  (0.0ms) begin transaction
280110
+  (0.0ms) rollback transaction
280111
+  (0.0ms) begin transaction
280112
+  (0.0ms) rollback transaction
280113
+  (0.0ms) begin transaction
280114
+  (0.0ms) rollback transaction
280115
+  (0.0ms) begin transaction
280116
+  (0.0ms) rollback transaction
280117
+  (0.0ms) begin transaction
280118
+  (0.0ms) rollback transaction
280119
+  (0.0ms) begin transaction
280120
+  (0.0ms) rollback transaction
280121
+  (0.0ms) begin transaction
280122
+  (0.0ms) rollback transaction
280123
+  (0.0ms) begin transaction
280124
+  (0.0ms) rollback transaction
280125
+ Traka::TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280126
+  (0.0ms) begin transaction
280127
+ SQL (22.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 891]]
280128
+  (47.8ms) commit transaction
280129
+  (0.0ms) begin transaction
280130
+ Binary data inserted for `string` type on column `uuid`
280131
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "834596b94a7725be31f6d94ddfa3b593f1e9c0b8"], ["version", 2]]
280132
+ Binary data inserted for `string` type on column `code`
280133
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "834596b94a7725be31f6d94ddfa3b593f1e9c0b8"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
280134
+  (9.0ms) commit transaction
280135
+ Traka::TrakaChange Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280136
+ Traka::TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280137
+  (0.0ms) begin transaction
280138
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 892]]
280139
+  (9.3ms) commit transaction
280140
+  (0.1ms) begin transaction
280141
+ Binary data inserted for `string` type on column `uuid`
280142
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "6d3eb1c6c8ab4a7861373c1547188c574300f4e1"], ["version", 2]]
280143
+ Binary data inserted for `string` type on column `code`
280144
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "6d3eb1c6c8ab4a7861373c1547188c574300f4e1"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
280145
+  (27.1ms) commit transaction
280146
+  (0.1ms) begin transaction
280147
+ Binary data inserted for `string` type on column `uuid`
280148
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "6d3eb1c6c8ab4a7861373c1547188c574300f4e1"], ["version", 2]]
280149
+ SQL (0.2ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 299]]
280150
+  (16.5ms) commit transaction
280151
+ Traka::TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280152
+ Traka::TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280153
+  (0.1ms) begin transaction
280154
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 893]]
280155
+  (9.3ms) commit transaction
280156
+  (0.1ms) begin transaction
280157
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 894]]
280158
+  (14.4ms) commit transaction
280159
+  (0.2ms) begin transaction
280160
+ Binary data inserted for `string` type on column `uuid`
280161
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "1048f6e7a050543ebfd77a3734b5a86a4369d646"], ["version", 2]]
280162
+ Binary data inserted for `string` type on column `code`
280163
+ SQL (0.4ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1048f6e7a050543ebfd77a3734b5a86a4369d646"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
280164
+  (27.8ms) commit transaction
280165
+  (0.1ms) begin transaction
280166
+ Binary data inserted for `string` type on column `uuid`
280167
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "1048f6e7a050543ebfd77a3734b5a86a4369d646"], ["version", 2]]
280168
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:43:45.502627' WHERE "cheeses"."id" = 300
280169
+  (9.2ms) commit transaction
280170
+ Traka::TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280171
+ Traka::TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" 
280172
+  (0.1ms) begin transaction
280173
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 895]]
280174
+  (9.3ms) commit transaction
280175
+  (0.1ms) begin transaction
280176
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 896]]
280177
+  (20.8ms) commit transaction
280178
+  (0.1ms) begin transaction
280179
+ Binary data inserted for `string` type on column `uuid`
280180
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "960f572b806d4f80c0d44da2f6f97a16f8952d55"], ["version", 2]]
280181
+ Binary data inserted for `string` type on column `code`
280182
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "960f572b806d4f80c0d44da2f6f97a16f8952d55"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
280183
+  (10.7ms) commit transaction
280184
+ Traka::TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280185
+  (0.1ms) begin transaction
280186
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 897]]
280187
+  (7.9ms) commit transaction
280188
+ Traka::TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280189
+  (0.1ms) begin transaction
280190
+ Binary data inserted for `string` type on column `uuid`
280191
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "81029b94935153a42ee08a0cadc3c2d74d4524b0"], ["version", 2]]
280192
+ Binary data inserted for `string` type on column `uuid`
280193
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "81029b94935153a42ee08a0cadc3c2d74d4524b0"]]
280194
+  (7.5ms) commit transaction
280195
+ Traka::TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280196
+ Traka::TrakaChange Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes"
280197
+  (0.1ms) begin transaction
280198
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 898]]
280199
+  (14.4ms) commit transaction
280200
+  (0.1ms) begin transaction
280201
+ Binary data inserted for `string` type on column `uuid`
280202
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "05a4a27db0026b5f0419306a012d7ea02bc525f0"], ["version", 2]]
280203
+ Binary data inserted for `string` type on column `uuid`
280204
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "05a4a27db0026b5f0419306a012d7ea02bc525f0"]]
280205
+  (19.7ms) commit transaction
280206
+  (0.1ms) begin transaction
280207
+ Binary data inserted for `string` type on column `uuid`
280208
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "05a4a27db0026b5f0419306a012d7ea02bc525f0"], ["version", 2]]
280209
+ SQL (0.3ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 308]]
280210
+  (9.3ms) commit transaction
280211
+ Traka::TrakaChange Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280212
+ Traka::TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280213
+  (0.1ms) begin transaction
280214
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 899]]
280215
+  (27.7ms) commit transaction
280216
+  (0.1ms) begin transaction
280217
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 900]]
280218
+  (46.2ms) commit transaction
280219
+  (0.1ms) begin transaction
280220
+ Binary data inserted for `string` type on column `uuid`
280221
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "4bee06570fb0dd4a0d75e350cff100fbbc954401"], ["version", 2]]
280222
+ Binary data inserted for `string` type on column `uuid`
280223
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "4bee06570fb0dd4a0d75e350cff100fbbc954401"]]
280224
+  (11.2ms) commit transaction
280225
+  (0.1ms) begin transaction
280226
+ Binary data inserted for `string` type on column `uuid`
280227
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "4bee06570fb0dd4a0d75e350cff100fbbc954401"], ["version", 2]]
280228
+  (0.1ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:43:45.773757' WHERE "products"."id" = 309
280229
+  (29.7ms) commit transaction
280230
+ Traka::TrakaChange Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280231
+ Traka::TrakaChange Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280232
+  (0.1ms) begin transaction
280233
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 901]]
280234
+  (7.8ms) commit transaction
280235
+  (0.0ms) begin transaction
280236
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 902]]
280237
+  (9.1ms) commit transaction
280238
+ Traka::TrakaChange Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280239
+  (0.0ms) begin transaction
280240
+ Binary data inserted for `string` type on column `uuid`
280241
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "c853626fa4811bbe7dbea80175939dcadcdf73eb"], ["version", 2]]
280242
+ Binary data inserted for `string` type on column `uuid`
280243
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "c853626fa4811bbe7dbea80175939dcadcdf73eb"]]
280244
+  (9.4ms) commit transaction
280245
+  (0.1ms) begin transaction
280246
+  (0.1ms) rollback transaction
280247
+ Connecting to database specified by database.yml
280248
+  (0.3ms) begin transaction
280249
+  (0.1ms) rollback transaction
280250
+  (0.1ms) begin transaction
280251
+  (0.0ms) rollback transaction
280252
+  (0.0ms) begin transaction
280253
+  (0.0ms) rollback transaction
280254
+  (0.0ms) begin transaction
280255
+  (0.0ms) rollback transaction
280256
+  (0.0ms) begin transaction
280257
+  (0.0ms) rollback transaction
280258
+  (0.0ms) begin transaction
280259
+  (0.0ms) rollback transaction
280260
+  (0.0ms) begin transaction
280261
+  (0.0ms) rollback transaction
280262
+  (0.0ms) begin transaction
280263
+  (0.0ms) rollback transaction
280264
+  (0.0ms) begin transaction
280265
+  (0.0ms) rollback transaction
280266
+  (0.0ms) begin transaction
280267
+  (0.0ms) rollback transaction
280268
+  (0.0ms) begin transaction
280269
+  (0.0ms) rollback transaction
280270
+  (0.0ms) begin transaction
280271
+  (0.0ms) rollback transaction
280272
+ Connecting to database specified by database.yml
280273
+  (0.3ms) begin transaction
280274
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280275
+  (0.1ms) SAVEPOINT active_record_1
280276
+ SQL (2.7ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280277
+  (0.1ms) RELEASE SAVEPOINT active_record_1
280278
+  (0.0ms) SAVEPOINT active_record_1
280279
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
280280
+  (0.1ms) rollback transaction
280281
+  (0.0ms) begin transaction
280282
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280283
+  (0.0ms) SAVEPOINT active_record_1
280284
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280286
+  (0.0ms) SAVEPOINT active_record_1
280287
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280288
+  (0.1ms) rollback transaction
280289
+  (0.0ms) begin transaction
280290
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280291
+  (0.0ms) SAVEPOINT active_record_1
280292
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280294
+  (0.0ms) SAVEPOINT active_record_1
280295
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280296
+  (0.1ms) rollback transaction
280297
+  (0.0ms) begin transaction
280298
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280299
+  (0.0ms) SAVEPOINT active_record_1
280300
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280302
+  (0.0ms) SAVEPOINT active_record_1
280303
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280304
+  (0.1ms) rollback transaction
280305
+  (0.0ms) begin transaction
280306
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280307
+  (0.0ms) SAVEPOINT active_record_1
280308
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280310
+  (0.0ms) SAVEPOINT active_record_1
280311
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280312
+  (0.1ms) rollback transaction
280313
+  (0.0ms) begin transaction
280314
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280315
+  (0.0ms) SAVEPOINT active_record_1
280316
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280318
+  (0.0ms) SAVEPOINT active_record_1
280319
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280320
+  (0.1ms) rollback transaction
280321
+  (0.0ms) begin transaction
280322
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280323
+  (0.0ms) SAVEPOINT active_record_1
280324
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280326
+  (0.0ms) SAVEPOINT active_record_1
280327
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280328
+  (0.1ms) rollback transaction
280329
+  (0.0ms) begin transaction
280330
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280331
+  (0.0ms) SAVEPOINT active_record_1
280332
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280334
+  (0.0ms) SAVEPOINT active_record_1
280335
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280336
+  (0.1ms) rollback transaction
280337
+  (0.0ms) begin transaction
280338
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280339
+  (0.0ms) SAVEPOINT active_record_1
280340
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280342
+  (0.1ms) rollback transaction
280343
+  (0.0ms) begin transaction
280344
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280345
+  (0.0ms) SAVEPOINT active_record_1
280346
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280348
+  (0.0ms) SAVEPOINT active_record_1
280349
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
280350
+  (0.1ms) rollback transaction
280351
+  (0.0ms) begin transaction
280352
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280353
+  (0.0ms) SAVEPOINT active_record_1
280354
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280356
+  (0.1ms) rollback transaction
280357
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280358
+  (0.0ms) begin transaction
280359
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
280360
+  (18.4ms) commit transaction
280361
+  (0.1ms) begin transaction
280362
+  (0.0ms) rollback transaction
280363
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280364
+  (0.0ms) begin transaction
280365
+  (0.0ms) rollback transaction
280366
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280367
+  (0.0ms) begin transaction
280368
+  (0.0ms) rollback transaction
280369
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280370
+  (0.0ms) begin transaction
280371
+  (0.0ms) rollback transaction
280372
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280373
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280374
+  (0.0ms) begin transaction
280375
+  (0.0ms) rollback transaction
280376
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280377
+  (0.0ms) begin transaction
280378
+  (0.0ms) rollback transaction
280379
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280380
+  (0.1ms) begin transaction
280381
+  (0.1ms) rollback transaction
280382
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280383
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280384
+  (0.0ms) begin transaction
280385
+  (0.0ms) rollback transaction
280386
+  (0.0ms) begin transaction
280387
+  (0.0ms) rollback transaction
280388
+ Connecting to database specified by database.yml
280389
+  (0.3ms) begin transaction
280390
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280391
+  (0.0ms) SAVEPOINT active_record_1
280392
+ Binary data inserted for `string` type on column `uuid`
280393
+ SQL (37.4ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:48 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:48 UTC +00:00], ["uuid", "1f7eb04b38bf3c2393fbf4a48d402bce32ba47ef"], ["version", 2]]
280394
+ Binary data inserted for `string` type on column `uuid`
280395
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1f7eb04b38bf3c2393fbf4a48d402bce32ba47ef"]]
280396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280397
+  (0.0ms) SAVEPOINT active_record_1
280398
+ Binary data inserted for `string` type on column `uuid`
280399
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "e98647384f8aa6f2c6f6e7ce5b62fb864a0d3190"], ["version", 2]]
280400
+ Binary data inserted for `string` type on column `code`
280401
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e98647384f8aa6f2c6f6e7ce5b62fb864a0d3190"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280403
+  (0.0ms) SAVEPOINT active_record_1
280404
+ Binary data inserted for `string` type on column `uuid`
280405
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1f7eb04b38bf3c2393fbf4a48d402bce32ba47ef"], ["version", 2]]
280406
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 311]]
280407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280408
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280409
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280410
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280411
+  (0.1ms) rollback transaction
280412
+  (0.0ms) begin transaction
280413
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280414
+  (0.0ms) SAVEPOINT active_record_1
280415
+ Binary data inserted for `string` type on column `uuid`
280416
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"], ["version", 2]]
280417
+ Binary data inserted for `string` type on column `uuid`
280418
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"]]
280419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280420
+  (0.0ms) SAVEPOINT active_record_1
280421
+ Binary data inserted for `string` type on column `uuid`
280422
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "c0a8b22264762704c9c4cd70cfde2e9aa7a6bb9a"], ["version", 2]]
280423
+ Binary data inserted for `string` type on column `code`
280424
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c0a8b22264762704c9c4cd70cfde2e9aa7a6bb9a"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280426
+  (0.0ms) SAVEPOINT active_record_1
280427
+ Binary data inserted for `string` type on column `uuid`
280428
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"], ["version", 2]]
280429
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.029237' WHERE "products"."id" = 311
280430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280431
+  (0.0ms) SAVEPOINT active_record_1
280432
+ Binary data inserted for `string` type on column `uuid`
280433
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"], ["version", 2]]
280434
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:33:49.031365' WHERE "products"."id" = 311
280435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280436
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280437
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280438
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280439
+  (0.1ms) rollback transaction
280440
+  (0.0ms) begin transaction
280441
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280442
+  (0.0ms) SAVEPOINT active_record_1
280443
+ Binary data inserted for `string` type on column `uuid`
280444
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"], ["version", 2]]
280445
+ Binary data inserted for `string` type on column `uuid`
280446
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"]]
280447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280448
+  (0.0ms) SAVEPOINT active_record_1
280449
+ Binary data inserted for `string` type on column `uuid`
280450
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "21b8ae6090ec6b521228b5e9c4d8aff6ef35e58b"], ["version", 2]]
280451
+ Binary data inserted for `string` type on column `code`
280452
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "21b8ae6090ec6b521228b5e9c4d8aff6ef35e58b"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280454
+  (0.0ms) SAVEPOINT active_record_1
280455
+ Binary data inserted for `string` type on column `uuid`
280456
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"], ["version", 3]]
280457
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.039654' WHERE "products"."id" = 311
280458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280459
+  (0.0ms) SAVEPOINT active_record_1
280460
+ Binary data inserted for `string` type on column `uuid`
280461
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "21b8ae6090ec6b521228b5e9c4d8aff6ef35e58b"], ["version", 3]]
280462
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.041817' WHERE "cheeses"."id" = 302
280463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280464
+  (0.0ms) SAVEPOINT active_record_1
280465
+ Binary data inserted for `string` type on column `uuid`
280466
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"], ["version", 3]]
280467
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 311]]
280468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280469
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280470
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280471
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280472
+  (0.1ms) rollback transaction
280473
+  (0.0ms) begin transaction
280474
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280475
+  (0.0ms) SAVEPOINT active_record_1
280476
+ Binary data inserted for `string` type on column `uuid`
280477
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 2]]
280478
+ Binary data inserted for `string` type on column `uuid`
280479
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"]]
280480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280481
+  (0.0ms) SAVEPOINT active_record_1
280482
+ Binary data inserted for `string` type on column `uuid`
280483
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1c95c5252b30e2dc7c358cc5b42f08e16c8cf3fa"], ["version", 2]]
280484
+ Binary data inserted for `string` type on column `code`
280485
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1c95c5252b30e2dc7c358cc5b42f08e16c8cf3fa"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280487
+  (0.0ms) SAVEPOINT active_record_1
280488
+ Binary data inserted for `string` type on column `uuid`
280489
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 3]]
280490
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.051919' WHERE "products"."id" = 311
280491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280492
+  (0.0ms) SAVEPOINT active_record_1
280493
+ Binary data inserted for `string` type on column `uuid`
280494
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 3]]
280495
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:33:49.053714' WHERE "products"."id" = 311
280496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280497
+  (0.0ms) SAVEPOINT active_record_1
280498
+ Binary data inserted for `string` type on column `uuid`
280499
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 3]]
280500
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:33:49.055372' WHERE "products"."id" = 311
280501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280502
+  (0.0ms) SAVEPOINT active_record_1
280503
+ Binary data inserted for `string` type on column `uuid`
280504
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1c95c5252b30e2dc7c358cc5b42f08e16c8cf3fa"], ["version", 3]]
280505
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.057093' WHERE "cheeses"."id" = 302
280506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280507
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280508
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280509
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280510
+  (0.1ms) rollback transaction
280511
+  (0.0ms) begin transaction
280512
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280513
+  (0.0ms) SAVEPOINT active_record_1
280514
+ Binary data inserted for `string` type on column `uuid`
280515
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
280516
+ Binary data inserted for `string` type on column `uuid`
280517
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"]]
280518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280519
+  (0.0ms) SAVEPOINT active_record_1
280520
+ Binary data inserted for `string` type on column `uuid`
280521
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "22c391c7ee5b6608e3cac67825e4c4a436f9cf93"], ["version", 2]]
280522
+ Binary data inserted for `string` type on column `code`
280523
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "22c391c7ee5b6608e3cac67825e4c4a436f9cf93"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280525
+  (0.0ms) SAVEPOINT active_record_1
280526
+ Binary data inserted for `string` type on column `uuid`
280527
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
280528
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.065466' WHERE "products"."id" = 311
280529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280530
+  (0.0ms) SAVEPOINT active_record_1
280531
+ Binary data inserted for `string` type on column `uuid`
280532
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
280533
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:33:49.067097' WHERE "products"."id" = 311
280534
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280535
+  (0.0ms) SAVEPOINT active_record_1
280536
+ Binary data inserted for `string` type on column `uuid`
280537
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
280538
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 311]]
280539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280540
+  (0.0ms) SAVEPOINT active_record_1
280541
+ Binary data inserted for `string` type on column `uuid`
280542
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "22c391c7ee5b6608e3cac67825e4c4a436f9cf93"], ["version", 2]]
280543
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 302]]
280544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280545
+  (0.1ms) SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280546
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280547
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280548
+  (0.1ms) rollback transaction
280549
+  (0.0ms) begin transaction
280550
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280551
+  (0.0ms) SAVEPOINT active_record_1
280552
+ Binary data inserted for `string` type on column `uuid`
280553
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1e8e576ea349a1b4b4a33cff197573ec145eb8da"], ["version", 2]]
280554
+ Binary data inserted for `string` type on column `uuid`
280555
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1e8e576ea349a1b4b4a33cff197573ec145eb8da"]]
280556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280557
+  (0.0ms) SAVEPOINT active_record_1
280558
+ Binary data inserted for `string` type on column `uuid`
280559
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "18896a8702bdf354c0699bb82e3d9a4331ed9cf5"], ["version", 2]]
280560
+ Binary data inserted for `string` type on column `code`
280561
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "18896a8702bdf354c0699bb82e3d9a4331ed9cf5"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280563
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280564
+  (0.0ms) SAVEPOINT active_record_1
280565
+ Binary data inserted for `string` type on column `uuid`
280566
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "6948135c4564f32e88fddd8f65bda133a42dd43a"], ["version", 3]]
280567
+ Binary data inserted for `string` type on column `uuid`
280568
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "6948135c4564f32e88fddd8f65bda133a42dd43a"]]
280569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280570
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280571
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280572
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
280573
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
280574
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
280575
+  (0.1ms) rollback transaction
280576
+  (0.0ms) begin transaction
280577
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280578
+  (0.0ms) SAVEPOINT active_record_1
280579
+ Binary data inserted for `string` type on column `uuid`
280580
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9fa04837d390d0284e0a94717b13c985b396d340"], ["version", 2]]
280581
+ Binary data inserted for `string` type on column `uuid`
280582
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9fa04837d390d0284e0a94717b13c985b396d340"]]
280583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280584
+  (0.0ms) SAVEPOINT active_record_1
280585
+ Binary data inserted for `string` type on column `uuid`
280586
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "d6c5127c03f431dc3905513abb8ff8be9b396efd"], ["version", 2]]
280587
+ Binary data inserted for `string` type on column `code`
280588
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "d6c5127c03f431dc3905513abb8ff8be9b396efd"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280590
+  (0.0ms) SAVEPOINT active_record_1
280591
+ Binary data inserted for `string` type on column `uuid`
280592
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9fa04837d390d0284e0a94717b13c985b396d340"], ["version", 3]]
280593
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.088566' WHERE "products"."id" = 311
280594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280595
+  (0.0ms) SAVEPOINT active_record_1
280596
+ Binary data inserted for `string` type on column `uuid`
280597
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "d6c5127c03f431dc3905513abb8ff8be9b396efd"], ["version", 3]]
280598
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 302]]
280599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280600
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280601
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280602
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280603
+  (0.1ms) rollback transaction
280604
+  (0.0ms) begin transaction
280605
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280606
+  (0.0ms) SAVEPOINT active_record_1
280607
+ Binary data inserted for `string` type on column `uuid`
280608
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "750368d0e438340220aa2ece2b671a71d16825a2"], ["version", 2]]
280609
+ Binary data inserted for `string` type on column `uuid`
280610
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "750368d0e438340220aa2ece2b671a71d16825a2"]]
280611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280612
+  (0.0ms) SAVEPOINT active_record_1
280613
+ Binary data inserted for `string` type on column `uuid`
280614
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2bc78186e6b913377a571f9e06e63eefc169aff7"], ["version", 2]]
280615
+ Binary data inserted for `string` type on column `code`
280616
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "2bc78186e6b913377a571f9e06e63eefc169aff7"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280618
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280619
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280620
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280621
+  (0.1ms) rollback transaction
280622
+  (0.0ms) begin transaction
280623
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280624
+  (0.0ms) rollback transaction
280625
+  (0.0ms) begin transaction
280626
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280627
+  (0.0ms) SAVEPOINT active_record_1
280628
+ Binary data inserted for `string` type on column `uuid`
280629
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "5a813ece608eac00cf4a017210e48f72781ef3fe"], ["version", 2]]
280630
+ Binary data inserted for `string` type on column `uuid`
280631
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "5a813ece608eac00cf4a017210e48f72781ef3fe"]]
280632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280633
+  (0.0ms) SAVEPOINT active_record_1
280634
+ Binary data inserted for `string` type on column `uuid`
280635
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "f3e0d497266242aa68b8021332e8304ee04096fb"], ["version", 2]]
280636
+ Binary data inserted for `string` type on column `code`
280637
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "f3e0d497266242aa68b8021332e8304ee04096fb"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280639
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280640
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = '5a813ece608eac00cf4a017210e48f72781ef3fe' LIMIT 1
280641
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280642
+ Cheese Load (0.2ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'f3e0d497266242aa68b8021332e8304ee04096fb' LIMIT 1
280643
+  (0.1ms) rollback transaction
280644
+  (0.0ms) begin transaction
280645
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280646
+  (0.0ms) rollback transaction
280647
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280648
+  (0.0ms) begin transaction
280649
+ Binary data inserted for `string` type on column `uuid`
280650
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "587111f7fe876c9b97167adce171105a47036bf6"], ["version", 2]]
280651
+ Binary data inserted for `string` type on column `code`
280652
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "587111f7fe876c9b97167adce171105a47036bf6"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280653
+  (25.5ms) commit transaction
280654
+ Traka::Change Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280655
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280656
+  (0.1ms) begin transaction
280657
+ SQL (0.4ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 904]]
280658
+  (24.3ms) commit transaction
280659
+  (0.2ms) begin transaction
280660
+ Binary data inserted for `string` type on column `uuid`
280661
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0ccea3d4486c786b0b8aa46c10a61b6bae42d939"], ["version", 2]]
280662
+ Binary data inserted for `string` type on column `code`
280663
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "0ccea3d4486c786b0b8aa46c10a61b6bae42d939"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280664
+  (38.3ms) commit transaction
280665
+  (0.1ms) begin transaction
280666
+ Binary data inserted for `string` type on column `uuid`
280667
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0ccea3d4486c786b0b8aa46c10a61b6bae42d939"], ["version", 2]]
280668
+ SQL (0.3ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 303]]
280669
+  (10.3ms) commit transaction
280670
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280671
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280672
+  (0.1ms) begin transaction
280673
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 905]]
280674
+  (24.6ms) commit transaction
280675
+  (0.1ms) begin transaction
280676
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 906]]
280677
+  (10.5ms) commit transaction
280678
+  (0.1ms) begin transaction
280679
+ Binary data inserted for `string` type on column `uuid`
280680
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "a02dcc42c28568bf27ab8240db113bbd9a12d7ea"], ["version", 2]]
280681
+ Binary data inserted for `string` type on column `code`
280682
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a02dcc42c28568bf27ab8240db113bbd9a12d7ea"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280683
+  (13.5ms) commit transaction
280684
+  (0.1ms) begin transaction
280685
+ Binary data inserted for `string` type on column `uuid`
280686
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "a02dcc42c28568bf27ab8240db113bbd9a12d7ea"], ["version", 2]]
280687
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:33:49.304406' WHERE "cheeses"."id" = 304
280688
+  (7.7ms) commit transaction
280689
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280690
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280691
+  (0.1ms) begin transaction
280692
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 907]]
280693
+  (8.7ms) commit transaction
280694
+  (0.1ms) begin transaction
280695
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 908]]
280696
+  (8.2ms) commit transaction
280697
+  (0.1ms) begin transaction
280698
+ Binary data inserted for `string` type on column `uuid`
280699
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "afe556e7e60f71d9b946a8dc4d0d58ae3133486a"], ["version", 2]]
280700
+ Binary data inserted for `string` type on column `code`
280701
+ SQL (0.6ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "afe556e7e60f71d9b946a8dc4d0d58ae3133486a"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
280702
+  (30.9ms) commit transaction
280703
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" 
280704
+  (0.1ms) begin transaction
280705
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 909]]
280706
+  (38.4ms) commit transaction
280707
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280708
+  (0.1ms) begin transaction
280709
+ Binary data inserted for `string` type on column `uuid`
280710
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "aa9bd36f7de864d96a937d56b112fbf48caf8c94"], ["version", 2]]
280711
+ Binary data inserted for `string` type on column `uuid`
280712
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "aa9bd36f7de864d96a937d56b112fbf48caf8c94"]]
280713
+  (8.4ms) commit transaction
280714
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280715
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280716
+  (0.0ms) begin transaction
280717
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 910]]
280718
+  (27.8ms) commit transaction
280719
+  (0.1ms) begin transaction
280720
+ Binary data inserted for `string` type on column `uuid`
280721
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "b71a2ffb40fdab1e8092eae381245330d7b2cda3"], ["version", 2]]
280722
+ Binary data inserted for `string` type on column `uuid`
280723
+ SQL (0.7ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "b71a2ffb40fdab1e8092eae381245330d7b2cda3"]]
280724
+  (11.0ms) commit transaction
280725
+  (0.1ms) begin transaction
280726
+ Binary data inserted for `string` type on column `uuid`
280727
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "b71a2ffb40fdab1e8092eae381245330d7b2cda3"], ["version", 2]]
280728
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 312]]
280729
+  (9.8ms) commit transaction
280730
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280731
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280732
+  (0.2ms) begin transaction
280733
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 911]]
280734
+  (36.5ms) commit transaction
280735
+  (0.1ms) begin transaction
280736
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 912]]
280737
+  (9.4ms) commit transaction
280738
+  (0.1ms) begin transaction
280739
+ Binary data inserted for `string` type on column `uuid`
280740
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "7f786b2610c5069b8463f40754a562aae956b210"], ["version", 2]]
280741
+ Binary data inserted for `string` type on column `uuid`
280742
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "7f786b2610c5069b8463f40754a562aae956b210"]]
280743
+  (9.6ms) commit transaction
280744
+  (0.0ms) begin transaction
280745
+ Binary data inserted for `string` type on column `uuid`
280746
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "7f786b2610c5069b8463f40754a562aae956b210"], ["version", 2]]
280747
+  (0.1ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:33:49.565011' WHERE "products"."id" = 313
280748
+  (35.8ms) commit transaction
280749
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280750
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280751
+  (0.1ms) begin transaction
280752
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 913]]
280753
+  (11.3ms) commit transaction
280754
+  (0.1ms) begin transaction
280755
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 914]]
280756
+  (10.7ms) commit transaction
280757
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280758
+  (0.1ms) begin transaction
280759
+ Binary data inserted for `string` type on column `uuid`
280760
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "e2a2397a070c2fc450b93431adf05f7690975932"], ["version", 2]]
280761
+ Binary data inserted for `string` type on column `uuid`
280762
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "e2a2397a070c2fc450b93431adf05f7690975932"]]
280763
+  (10.0ms) commit transaction
280764
+  (0.2ms) begin transaction
280765
+  (0.1ms) rollback transaction
280766
+ Connecting to database specified by database.yml
280767
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280768
+  (0.0ms) begin transaction
280769
+ SQL (2.7ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 915]]
280770
+  (21.5ms) commit transaction
280771
+  (0.1ms) begin transaction
280772
+ Binary data inserted for `string` type on column `uuid`
280773
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "2df83f6b89893495c61f2cc7ead935e18c6aa399"], ["version", 2]]
280774
+ Binary data inserted for `string` type on column `code`
280775
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "2df83f6b89893495c61f2cc7ead935e18c6aa399"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
280776
+  (18.7ms) commit transaction
280777
+ Traka::Change Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280778
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280779
+  (0.1ms) begin transaction
280780
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 916]]
280781
+  (7.5ms) commit transaction
280782
+  (0.1ms) begin transaction
280783
+ Binary data inserted for `string` type on column `uuid`
280784
+ SQL (0.4ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "aeef38001fa478a497ab9ba91af318d55b481d9f"], ["version", 2]]
280785
+ Binary data inserted for `string` type on column `code`
280786
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "aeef38001fa478a497ab9ba91af318d55b481d9f"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
280787
+  (9.4ms) commit transaction
280788
+  (0.0ms) begin transaction
280789
+ Binary data inserted for `string` type on column `uuid`
280790
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "aeef38001fa478a497ab9ba91af318d55b481d9f"], ["version", 2]]
280791
+ SQL (0.2ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 307]]
280792
+  (10.9ms) commit transaction
280793
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280794
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280795
+  (0.1ms) begin transaction
280796
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 917]]
280797
+  (15.7ms) commit transaction
280798
+  (0.1ms) begin transaction
280799
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 918]]
280800
+  (58.7ms) commit transaction
280801
+  (0.1ms) begin transaction
280802
+ Binary data inserted for `string` type on column `uuid`
280803
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "685be57c08377c4da7a7b38d13a5c62c83ab763a"], ["version", 2]]
280804
+ Binary data inserted for `string` type on column `code`
280805
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "685be57c08377c4da7a7b38d13a5c62c83ab763a"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
280806
+  (12.4ms) commit transaction
280807
+  (0.1ms) begin transaction
280808
+ Binary data inserted for `string` type on column `uuid`
280809
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "685be57c08377c4da7a7b38d13a5c62c83ab763a"], ["version", 2]]
280810
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:35:18.776697' WHERE "cheeses"."id" = 308
280811
+  (36.0ms) commit transaction
280812
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280813
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280814
+  (0.1ms) begin transaction
280815
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 919]]
280816
+  (29.5ms) commit transaction
280817
+  (0.1ms) begin transaction
280818
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 920]]
280819
+  (8.1ms) commit transaction
280820
+  (0.1ms) begin transaction
280821
+ Binary data inserted for `string` type on column `uuid`
280822
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "402074042df68e5b8ac02febf133f0d5b2ff416b"], ["version", 2]]
280823
+ Binary data inserted for `string` type on column `code`
280824
+ SQL (0.4ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "402074042df68e5b8ac02febf133f0d5b2ff416b"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
280825
+  (25.7ms) commit transaction
280826
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
280827
+  (0.1ms) begin transaction
280828
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 921]]
280829
+  (8.7ms) commit transaction
280830
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280831
+  (0.1ms) begin transaction
280832
+ Binary data inserted for `string` type on column `uuid`
280833
+ SQL (0.4ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "a540ffb8ebf9cd5c0b9ce5bf1e3c4a5d5a5e9b78"], ["version", 2]]
280834
+ Binary data inserted for `string` type on column `uuid`
280835
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "a540ffb8ebf9cd5c0b9ce5bf1e3c4a5d5a5e9b78"]]
280836
+  (10.8ms) commit transaction
280837
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280838
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280839
+  (0.1ms) begin transaction
280840
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 922]]
280841
+  (32.2ms) commit transaction
280842
+  (0.2ms) begin transaction
280843
+ Binary data inserted for `string` type on column `uuid`
280844
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "873ae41ed743984cba9c810bb195285ce12e5587"], ["version", 2]]
280845
+ Binary data inserted for `string` type on column `uuid`
280846
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "873ae41ed743984cba9c810bb195285ce12e5587"]]
280847
+  (12.9ms) commit transaction
280848
+  (0.1ms) begin transaction
280849
+ Binary data inserted for `string` type on column `uuid`
280850
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "873ae41ed743984cba9c810bb195285ce12e5587"], ["version", 2]]
280851
+ SQL (0.4ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 316]]
280852
+  (8.9ms) commit transaction
280853
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280854
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
280855
+  (0.1ms) begin transaction
280856
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 923]]
280857
+  (7.8ms) commit transaction
280858
+  (0.1ms) begin transaction
280859
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 924]]
280860
+  (48.3ms) commit transaction
280861
+  (0.1ms) begin transaction
280862
+ Binary data inserted for `string` type on column `uuid`
280863
+ SQL (0.6ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "975234d0fa447b1b3d704966618e2f7f0c09c402"], ["version", 2]]
280864
+ Binary data inserted for `string` type on column `uuid`
280865
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "975234d0fa447b1b3d704966618e2f7f0c09c402"]]
280866
+  (26.8ms) commit transaction
280867
+  (0.1ms) begin transaction
280868
+ Binary data inserted for `string` type on column `uuid`
280869
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "975234d0fa447b1b3d704966618e2f7f0c09c402"], ["version", 2]]
280870
+  (0.1ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:35:19.110765' WHERE "products"."id" = 317
280871
+  (9.2ms) commit transaction
280872
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
280873
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280874
+  (0.1ms) begin transaction
280875
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 925]]
280876
+  (19.9ms) commit transaction
280877
+  (0.1ms) begin transaction
280878
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 926]]
280879
+  (30.5ms) commit transaction
280880
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
280881
+  (0.1ms) begin transaction
280882
+ Binary data inserted for `string` type on column `uuid`
280883
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ebf8052c82b879bf9adbf5b23b6fedba79476e31"], ["version", 2]]
280884
+ Binary data inserted for `string` type on column `uuid`
280885
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ebf8052c82b879bf9adbf5b23b6fedba79476e31"]]
280886
+  (11.5ms) commit transaction
280887
+  (0.1ms) begin transaction
280888
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280889
+  (0.0ms) SAVEPOINT active_record_1
280890
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
280891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280892
+  (0.0ms) SAVEPOINT active_record_1
280893
+ Binary data inserted for `string` type on column `uuid`
280894
+ SQL (0.5ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "92b33223c0dadc6dbc7c0e1a92e252ac18fe50aa"], ["version", 2]]
280895
+ Binary data inserted for `string` type on column `uuid`
280896
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "92b33223c0dadc6dbc7c0e1a92e252ac18fe50aa"]]
280897
+  (0.1ms) RELEASE SAVEPOINT active_record_1
280898
+  (0.1ms) SAVEPOINT active_record_1
280899
+ Binary data inserted for `string` type on column `uuid`
280900
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a19bde847c451664ab2927b4c51320b4fb9e01e0"], ["version", 2]]
280901
+ Binary data inserted for `string` type on column `code`
280902
+ SQL (0.3ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a19bde847c451664ab2927b4c51320b4fb9e01e0"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
280903
+  (0.1ms) RELEASE SAVEPOINT active_record_1
280904
+  (0.0ms) SAVEPOINT active_record_1
280905
+ Binary data inserted for `string` type on column `uuid`
280906
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "92b33223c0dadc6dbc7c0e1a92e252ac18fe50aa"], ["version", 2]]
280907
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 319]]
280908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280909
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280910
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280911
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280912
+  (0.2ms) rollback transaction
280913
+  (0.0ms) begin transaction
280914
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280915
+  (0.0ms) SAVEPOINT active_record_1
280916
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
280917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280918
+  (0.0ms) SAVEPOINT active_record_1
280919
+ Binary data inserted for `string` type on column `uuid`
280920
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"], ["version", 2]]
280921
+ Binary data inserted for `string` type on column `uuid`
280922
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"]]
280923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280924
+  (0.0ms) SAVEPOINT active_record_1
280925
+ Binary data inserted for `string` type on column `uuid`
280926
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "b03bb660566156b0a2975eee594649776c28ba2a"], ["version", 2]]
280927
+ Binary data inserted for `string` type on column `code`
280928
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "b03bb660566156b0a2975eee594649776c28ba2a"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
280929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280930
+  (0.0ms) SAVEPOINT active_record_1
280931
+ Binary data inserted for `string` type on column `uuid`
280932
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"], ["version", 2]]
280933
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.217262' WHERE "products"."id" = 319
280934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280935
+  (0.0ms) SAVEPOINT active_record_1
280936
+ Binary data inserted for `string` type on column `uuid`
280937
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"], ["version", 2]]
280938
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:35:19.219140' WHERE "products"."id" = 319
280939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280940
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280941
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280942
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
280943
+  (0.1ms) rollback transaction
280944
+  (0.0ms) begin transaction
280945
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
280946
+  (0.0ms) SAVEPOINT active_record_1
280947
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
280948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280949
+  (0.0ms) SAVEPOINT active_record_1
280950
+ Binary data inserted for `string` type on column `uuid`
280951
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"], ["version", 2]]
280952
+ Binary data inserted for `string` type on column `uuid`
280953
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"]]
280954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280955
+  (0.0ms) SAVEPOINT active_record_1
280956
+ Binary data inserted for `string` type on column `uuid`
280957
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a726cea40b30845d0d7b33224c8a715eeb9f9041"], ["version", 2]]
280958
+ Binary data inserted for `string` type on column `code`
280959
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a726cea40b30845d0d7b33224c8a715eeb9f9041"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
280960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280961
+  (0.0ms) SAVEPOINT active_record_1
280962
+ Binary data inserted for `string` type on column `uuid`
280963
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"], ["version", 3]]
280964
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.227934' WHERE "products"."id" = 319
280965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280966
+  (0.0ms) SAVEPOINT active_record_1
280967
+ Binary data inserted for `string` type on column `uuid`
280968
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a726cea40b30845d0d7b33224c8a715eeb9f9041"], ["version", 3]]
280969
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.229596' WHERE "cheeses"."id" = 310
280970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280971
+  (0.0ms) SAVEPOINT active_record_1
280972
+ Binary data inserted for `string` type on column `uuid`
280973
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"], ["version", 3]]
280974
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 319]]
280975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280976
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280977
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280978
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
280979
+  (0.1ms) rollback transaction
280980
+  (0.0ms) begin transaction
280981
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
280982
+  (0.0ms) SAVEPOINT active_record_1
280983
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
280984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280985
+  (0.0ms) SAVEPOINT active_record_1
280986
+ Binary data inserted for `string` type on column `uuid`
280987
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 2]]
280988
+ Binary data inserted for `string` type on column `uuid`
280989
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"]]
280990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280991
+  (0.0ms) SAVEPOINT active_record_1
280992
+ Binary data inserted for `string` type on column `uuid`
280993
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "273e137cfb24dc82bd4a47282b2dab9b28151b5a"], ["version", 2]]
280994
+ Binary data inserted for `string` type on column `code`
280995
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "273e137cfb24dc82bd4a47282b2dab9b28151b5a"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
280996
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280997
+  (0.0ms) SAVEPOINT active_record_1
280998
+ Binary data inserted for `string` type on column `uuid`
280999
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 3]]
281000
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.239054' WHERE "products"."id" = 319
281001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281002
+  (0.0ms) SAVEPOINT active_record_1
281003
+ Binary data inserted for `string` type on column `uuid`
281004
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 3]]
281005
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:35:19.241098' WHERE "products"."id" = 319
281006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281007
+  (0.0ms) SAVEPOINT active_record_1
281008
+ Binary data inserted for `string` type on column `uuid`
281009
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 3]]
281010
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:35:19.242911' WHERE "products"."id" = 319
281011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281012
+  (0.0ms) SAVEPOINT active_record_1
281013
+ Binary data inserted for `string` type on column `uuid`
281014
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "273e137cfb24dc82bd4a47282b2dab9b28151b5a"], ["version", 3]]
281015
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.244632' WHERE "cheeses"."id" = 310
281016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281017
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281018
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281019
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281020
+  (0.1ms) rollback transaction
281021
+  (0.0ms) begin transaction
281022
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281023
+  (0.0ms) SAVEPOINT active_record_1
281024
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281026
+  (0.0ms) SAVEPOINT active_record_1
281027
+ Binary data inserted for `string` type on column `uuid`
281028
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
281029
+ Binary data inserted for `string` type on column `uuid`
281030
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"]]
281031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281032
+  (0.0ms) SAVEPOINT active_record_1
281033
+ Binary data inserted for `string` type on column `uuid`
281034
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "18030c2e5e779924e5fe315409d86e917022194a"], ["version", 2]]
281035
+ Binary data inserted for `string` type on column `code`
281036
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "18030c2e5e779924e5fe315409d86e917022194a"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
281037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281038
+  (0.0ms) SAVEPOINT active_record_1
281039
+ Binary data inserted for `string` type on column `uuid`
281040
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
281041
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.253414' WHERE "products"."id" = 319
281042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281043
+  (0.0ms) SAVEPOINT active_record_1
281044
+ Binary data inserted for `string` type on column `uuid`
281045
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
281046
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:35:19.254912' WHERE "products"."id" = 319
281047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281048
+  (0.0ms) SAVEPOINT active_record_1
281049
+ Binary data inserted for `string` type on column `uuid`
281050
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
281051
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 319]]
281052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281053
+  (0.0ms) SAVEPOINT active_record_1
281054
+ Binary data inserted for `string` type on column `uuid`
281055
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "18030c2e5e779924e5fe315409d86e917022194a"], ["version", 2]]
281056
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 310]]
281057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281058
+  (0.1ms) SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281059
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281060
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281061
+  (0.1ms) rollback transaction
281062
+  (0.0ms) begin transaction
281063
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281064
+  (0.0ms) SAVEPOINT active_record_1
281065
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281067
+  (0.0ms) SAVEPOINT active_record_1
281068
+ Binary data inserted for `string` type on column `uuid`
281069
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ff87cce8c7290565d9a30292bac260ee02efcc64"], ["version", 2]]
281070
+ Binary data inserted for `string` type on column `uuid`
281071
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ff87cce8c7290565d9a30292bac260ee02efcc64"]]
281072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281073
+  (0.0ms) SAVEPOINT active_record_1
281074
+ Binary data inserted for `string` type on column `uuid`
281075
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "82fe535616eeeff2d258523c3191c7ffbfc40853"], ["version", 2]]
281076
+ Binary data inserted for `string` type on column `code`
281077
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "82fe535616eeeff2d258523c3191c7ffbfc40853"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
281078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281079
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281080
+  (0.0ms) SAVEPOINT active_record_1
281081
+ Binary data inserted for `string` type on column `uuid`
281082
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "49ee4b966701b76b96451245cb05db00ff41561b"], ["version", 3]]
281083
+ Binary data inserted for `string` type on column `uuid`
281084
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "49ee4b966701b76b96451245cb05db00ff41561b"]]
281085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281086
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281087
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281088
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
281089
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
281090
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
281091
+  (0.1ms) rollback transaction
281092
+  (0.0ms) begin transaction
281093
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281094
+  (0.1ms) SAVEPOINT active_record_1
281095
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281097
+  (0.0ms) SAVEPOINT active_record_1
281098
+ Binary data inserted for `string` type on column `uuid`
281099
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "cb79a983f6d769e7c8207513097eec613d1aec99"], ["version", 2]]
281100
+ Binary data inserted for `string` type on column `uuid`
281101
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "cb79a983f6d769e7c8207513097eec613d1aec99"]]
281102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281103
+  (0.0ms) SAVEPOINT active_record_1
281104
+ Binary data inserted for `string` type on column `uuid`
281105
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "fb1e607fb178ae401c98442a32a798f6c69e591e"], ["version", 2]]
281106
+ Binary data inserted for `string` type on column `code`
281107
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "fb1e607fb178ae401c98442a32a798f6c69e591e"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
281108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281109
+  (0.0ms) SAVEPOINT active_record_1
281110
+ Binary data inserted for `string` type on column `uuid`
281111
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "cb79a983f6d769e7c8207513097eec613d1aec99"], ["version", 3]]
281112
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.277146' WHERE "products"."id" = 319
281113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281114
+  (0.0ms) SAVEPOINT active_record_1
281115
+ Binary data inserted for `string` type on column `uuid`
281116
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "fb1e607fb178ae401c98442a32a798f6c69e591e"], ["version", 3]]
281117
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 310]]
281118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281119
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281120
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281121
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281122
+  (0.1ms) rollback transaction
281123
+  (0.0ms) begin transaction
281124
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281125
+  (0.0ms) SAVEPOINT active_record_1
281126
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281128
+  (0.0ms) SAVEPOINT active_record_1
281129
+ Binary data inserted for `string` type on column `uuid`
281130
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a92e07d530972fd65f3a5dd357e14d6a389eed2f"], ["version", 2]]
281131
+ Binary data inserted for `string` type on column `uuid`
281132
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a92e07d530972fd65f3a5dd357e14d6a389eed2f"]]
281133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281134
+  (0.0ms) SAVEPOINT active_record_1
281135
+ Binary data inserted for `string` type on column `uuid`
281136
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "b040c95f7f25b4b6acb6afac65a2cde6e7792134"], ["version", 2]]
281137
+ Binary data inserted for `string` type on column `code`
281138
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "b040c95f7f25b4b6acb6afac65a2cde6e7792134"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
281139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281140
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281141
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281142
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281143
+  (0.1ms) rollback transaction
281144
+  (0.0ms) begin transaction
281145
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281146
+  (0.0ms) SAVEPOINT active_record_1
281147
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281149
+  (0.1ms) rollback transaction
281150
+  (0.0ms) begin transaction
281151
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281152
+  (0.0ms) SAVEPOINT active_record_1
281153
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281155
+  (0.0ms) SAVEPOINT active_record_1
281156
+ Binary data inserted for `string` type on column `uuid`
281157
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "89a7c1904e1fb98c826992a4af26c36f3e3bb986"], ["version", 2]]
281158
+ Binary data inserted for `string` type on column `uuid`
281159
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "89a7c1904e1fb98c826992a4af26c36f3e3bb986"]]
281160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281161
+  (0.0ms) SAVEPOINT active_record_1
281162
+ Binary data inserted for `string` type on column `uuid`
281163
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "acc5879ee425d217f6b1b2a584a9b87d717bd1de"], ["version", 2]]
281164
+ Binary data inserted for `string` type on column `code`
281165
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "acc5879ee425d217f6b1b2a584a9b87d717bd1de"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
281166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281167
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281168
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = '89a7c1904e1fb98c826992a4af26c36f3e3bb986' LIMIT 1
281169
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281170
+ Cheese Load (0.2ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'acc5879ee425d217f6b1b2a584a9b87d717bd1de' LIMIT 1
281171
+  (0.2ms) rollback transaction
281172
+  (0.1ms) begin transaction
281173
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281174
+  (0.0ms) SAVEPOINT active_record_1
281175
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
281176
+  (0.1ms) RELEASE SAVEPOINT active_record_1
281177
+  (0.1ms) rollback transaction
281178
+  (0.1ms) begin transaction
281179
+  (0.0ms) rollback transaction
281180
+ Connecting to database specified by database.yml
281181
+  (0.0ms) begin transaction
281182
+  (0.0ms) rollback transaction
281183
+  (0.0ms) begin transaction
281184
+  (0.0ms) rollback transaction
281185
+  (0.0ms) begin transaction
281186
+  (0.0ms) rollback transaction
281187
+  (0.0ms) begin transaction
281188
+  (0.0ms) rollback transaction
281189
+  (0.0ms) begin transaction
281190
+  (0.0ms) rollback transaction
281191
+  (0.0ms) begin transaction
281192
+  (0.0ms) rollback transaction
281193
+  (0.0ms) begin transaction
281194
+  (0.0ms) rollback transaction
281195
+  (0.0ms) begin transaction
281196
+  (0.0ms) rollback transaction
281197
+  (0.0ms) begin transaction
281198
+  (0.0ms) rollback transaction
281199
+  (0.0ms) begin transaction
281200
+  (0.0ms) rollback transaction
281201
+  (0.0ms) begin transaction
281202
+  (0.0ms) rollback transaction
281203
+  (0.0ms) begin transaction
281204
+  (0.0ms) rollback transaction
281205
+ Connecting to database specified by database.yml
281206
+  (0.0ms) begin transaction
281207
+  (0.0ms) rollback transaction
281208
+  (0.0ms) begin transaction
281209
+  (0.0ms) rollback transaction
281210
+  (0.0ms) begin transaction
281211
+  (0.0ms) rollback transaction
281212
+  (0.0ms) begin transaction
281213
+  (0.0ms) rollback transaction
281214
+  (0.0ms) begin transaction
281215
+  (0.0ms) rollback transaction
281216
+  (0.0ms) begin transaction
281217
+  (0.0ms) rollback transaction
281218
+  (0.0ms) begin transaction
281219
+  (0.0ms) rollback transaction
281220
+  (0.0ms) begin transaction
281221
+  (0.0ms) rollback transaction
281222
+  (0.0ms) begin transaction
281223
+  (0.0ms) rollback transaction
281224
+  (0.0ms) begin transaction
281225
+  (0.0ms) rollback transaction
281226
+  (0.0ms) begin transaction
281227
+  (0.0ms) rollback transaction
281228
+  (0.0ms) begin transaction
281229
+  (0.0ms) rollback transaction
281230
+ Connecting to database specified by database.yml
281231
+  (0.0ms) begin transaction
281232
+  (0.0ms) rollback transaction
281233
+  (0.0ms) begin transaction
281234
+  (0.0ms) rollback transaction
281235
+  (0.0ms) begin transaction
281236
+  (0.0ms) rollback transaction
281237
+  (0.0ms) begin transaction
281238
+  (0.0ms) rollback transaction
281239
+  (0.0ms) begin transaction
281240
+  (0.0ms) rollback transaction
281241
+  (0.0ms) begin transaction
281242
+  (0.0ms) rollback transaction
281243
+  (0.0ms) begin transaction
281244
+  (0.0ms) rollback transaction
281245
+  (0.0ms) begin transaction
281246
+  (0.0ms) rollback transaction
281247
+  (0.0ms) begin transaction
281248
+  (0.0ms) rollback transaction
281249
+  (0.0ms) begin transaction
281250
+  (0.0ms) rollback transaction
281251
+  (0.0ms) begin transaction
281252
+  (0.0ms) rollback transaction
281253
+  (0.0ms) begin transaction
281254
+  (0.0ms) rollback transaction
281255
+ Connecting to database specified by database.yml
281256
+  (0.0ms) begin transaction
281257
+  (0.0ms) rollback transaction
281258
+  (0.0ms) begin transaction
281259
+  (0.0ms) rollback transaction
281260
+  (0.0ms) begin transaction
281261
+  (0.0ms) rollback transaction
281262
+  (0.0ms) begin transaction
281263
+  (0.0ms) rollback transaction
281264
+  (0.0ms) begin transaction
281265
+  (0.0ms) rollback transaction
281266
+  (0.0ms) begin transaction
281267
+  (0.0ms) rollback transaction
281268
+  (0.0ms) begin transaction
281269
+  (0.0ms) rollback transaction
281270
+  (0.0ms) begin transaction
281271
+  (0.0ms) rollback transaction
281272
+  (0.0ms) begin transaction
281273
+  (0.0ms) rollback transaction
281274
+  (0.0ms) begin transaction
281275
+  (0.0ms) rollback transaction
281276
+  (0.0ms) begin transaction
281277
+  (0.0ms) rollback transaction
281278
+  (0.0ms) begin transaction
281279
+  (0.0ms) rollback transaction
281280
+ Connecting to database specified by database.yml
281281
+  (0.1ms) select sqlite_version(*)
281282
+  (20.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
281283
+  (23.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
281284
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
281285
+ Migrating to CreateProducts (20131219051328)
281286
+  (0.1ms) begin transaction
281287
+  (0.9ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "uuid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281288
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131219051328')
281289
+  (7.4ms) commit transaction
281290
+ Migrating to CreateCheeses (20131219051348)
281291
+  (0.1ms) begin transaction
281292
+  (0.8ms) CREATE TABLE "cheeses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281293
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131219051348')
281294
+  (9.7ms) commit transaction
281295
+ Migrating to CreateTrakaChanges (20140102053940)
281296
+  (0.1ms) begin transaction
281297
+  (0.3ms) CREATE TABLE "traka_changes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "klass" varchar(255), "uuid" varchar(255), "action_type" varchar(255), "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281298
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20140102053940')
281299
+  (9.3ms) commit transaction
281300
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
281301
+ Connecting to database specified by database.yml
281302
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281303
+  (0.0ms) begin transaction
281304
+ Binary data inserted for `string` type on column `uuid`
281305
+ SQL (3.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["uuid", "e458c50e2c31d6831789fa728326660a4bed45a1"], ["version", 2]]
281306
+ Binary data inserted for `string` type on column `code`
281307
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e458c50e2c31d6831789fa728326660a4bed45a1"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00]]
281308
+  (26.2ms) commit transaction
281309
+ Traka::Change Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281310
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281311
+  (0.0ms) begin transaction
281312
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 1]]
281313
+  (21.8ms) commit transaction
281314
+  (0.1ms) begin transaction
281315
+ Binary data inserted for `string` type on column `uuid`
281316
+ SQL (24.5ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["uuid", "00e95b8797deab4a1c92f520314327f639c4785c"], ["version", 2]]
281317
+ Binary data inserted for `string` type on column `code`
281318
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "00e95b8797deab4a1c92f520314327f639c4785c"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00]]
281319
+  (27.8ms) commit transaction
281320
+  (0.1ms) begin transaction
281321
+ Binary data inserted for `string` type on column `uuid`
281322
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["uuid", "00e95b8797deab4a1c92f520314327f639c4785c"], ["version", 2]]
281323
+ SQL (0.2ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 2]]
281324
+  (11.1ms) commit transaction
281325
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281326
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281327
+  (0.1ms) begin transaction
281328
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 2]]
281329
+  (23.9ms) commit transaction
281330
+  (0.1ms) begin transaction
281331
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 3]]
281332
+  (10.8ms) commit transaction
281333
+  (0.1ms) begin transaction
281334
+ Binary data inserted for `string` type on column `uuid`
281335
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "41dd56e75c03e8d2bbff431f527af4a744951bfd"], ["version", 2]]
281336
+ Binary data inserted for `string` type on column `code`
281337
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "41dd56e75c03e8d2bbff431f527af4a744951bfd"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281338
+  (31.2ms) commit transaction
281339
+  (0.1ms) begin transaction
281340
+ Binary data inserted for `string` type on column `uuid`
281341
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "41dd56e75c03e8d2bbff431f527af4a744951bfd"], ["version", 2]]
281342
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:45:35.052272' WHERE "cheeses"."id" = 3
281343
+  (18.5ms) commit transaction
281344
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281345
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281346
+  (0.1ms) begin transaction
281347
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 4]]
281348
+  (8.6ms) commit transaction
281349
+  (0.1ms) begin transaction
281350
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 5]]
281351
+  (7.7ms) commit transaction
281352
+  (0.1ms) begin transaction
281353
+ Binary data inserted for `string` type on column `uuid`
281354
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "45325abbf534993c8f5b49fd48dea0dd7572501f"], ["version", 2]]
281355
+ Binary data inserted for `string` type on column `code`
281356
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "45325abbf534993c8f5b49fd48dea0dd7572501f"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281357
+  (8.0ms) commit transaction
281358
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281359
+  (0.0ms) begin transaction
281360
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 6]]
281361
+  (9.4ms) commit transaction
281362
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
281363
+  (0.2ms) begin transaction
281364
+ Binary data inserted for `string` type on column `uuid`
281365
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "4cb43d3b22f0cdd2d50fe6749d50ab6baac52982"], ["version", 2]]
281366
+ Binary data inserted for `string` type on column `uuid`
281367
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "4cb43d3b22f0cdd2d50fe6749d50ab6baac52982"]]
281368
+  (8.3ms) commit transaction
281369
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281370
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
281371
+  (0.1ms) begin transaction
281372
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 7]]
281373
+  (32.5ms) commit transaction
281374
+  (0.1ms) begin transaction
281375
+ Binary data inserted for `string` type on column `uuid`
281376
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a60cd8dc739c1ded35967066a2112d7a199abf20"], ["version", 2]]
281377
+ Binary data inserted for `string` type on column `uuid`
281378
+ SQL (0.4ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a60cd8dc739c1ded35967066a2112d7a199abf20"]]
281379
+  (31.9ms) commit transaction
281380
+  (0.1ms) begin transaction
281381
+ Binary data inserted for `string` type on column `uuid`
281382
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a60cd8dc739c1ded35967066a2112d7a199abf20"], ["version", 2]]
281383
+ SQL (0.2ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 2]]
281384
+  (38.0ms) commit transaction
281385
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281386
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281387
+  (0.1ms) begin transaction
281388
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 8]]
281389
+  (23.1ms) commit transaction
281390
+  (0.1ms) begin transaction
281391
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 9]]
281392
+  (18.6ms) commit transaction
281393
+  (0.1ms) begin transaction
281394
+ Binary data inserted for `string` type on column `uuid`
281395
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "f76999cc881db3a2765ae4a4630e479faae276dd"], ["version", 2]]
281396
+ Binary data inserted for `string` type on column `uuid`
281397
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "f76999cc881db3a2765ae4a4630e479faae276dd"]]
281398
+  (8.5ms) commit transaction
281399
+  (0.1ms) begin transaction
281400
+ Binary data inserted for `string` type on column `uuid`
281401
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "f76999cc881db3a2765ae4a4630e479faae276dd"], ["version", 2]]
281402
+  (0.3ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:45:35.343358' WHERE "products"."id" = 3
281403
+  (20.6ms) commit transaction
281404
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281405
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281406
+  (0.1ms) begin transaction
281407
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 10]]
281408
+  (18.0ms) commit transaction
281409
+  (0.1ms) begin transaction
281410
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 11]]
281411
+  (104.0ms) commit transaction
281412
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
281413
+  (0.1ms) begin transaction
281414
+ Binary data inserted for `string` type on column `uuid`
281415
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "618642cad406e806bb6a0a122a388f571633a422"], ["version", 2]]
281416
+ Binary data inserted for `string` type on column `uuid`
281417
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "618642cad406e806bb6a0a122a388f571633a422"]]
281418
+  (6.7ms) commit transaction
281419
+  (0.1ms) begin transaction
281420
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281421
+  (0.0ms) SAVEPOINT active_record_1
281422
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281424
+  (0.0ms) SAVEPOINT active_record_1
281425
+ Binary data inserted for `string` type on column `uuid`
281426
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a23ab455a85142673f1c073bc9aa42fc18b835ad"], ["version", 2]]
281427
+ Binary data inserted for `string` type on column `uuid`
281428
+ SQL (0.3ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a23ab455a85142673f1c073bc9aa42fc18b835ad"]]
281429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
281430
+  (0.1ms) SAVEPOINT active_record_1
281431
+ Binary data inserted for `string` type on column `uuid`
281432
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "945840b2d2b348eb6ad96f9c0ae8301cf5ea97d1"], ["version", 2]]
281433
+ Binary data inserted for `string` type on column `code`
281434
+ SQL (0.3ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "945840b2d2b348eb6ad96f9c0ae8301cf5ea97d1"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281435
+  (0.1ms) RELEASE SAVEPOINT active_record_1
281436
+  (0.0ms) SAVEPOINT active_record_1
281437
+ Binary data inserted for `string` type on column `uuid`
281438
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a23ab455a85142673f1c073bc9aa42fc18b835ad"], ["version", 2]]
281439
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 5]]
281440
+  (0.1ms) RELEASE SAVEPOINT active_record_1
281441
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281442
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281443
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281444
+  (0.1ms) rollback transaction
281445
+  (0.0ms) begin transaction
281446
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281447
+  (0.0ms) SAVEPOINT active_record_1
281448
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281450
+  (0.0ms) SAVEPOINT active_record_1
281451
+ Binary data inserted for `string` type on column `uuid`
281452
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"], ["version", 2]]
281453
+ Binary data inserted for `string` type on column `uuid`
281454
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"]]
281455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281456
+  (0.0ms) SAVEPOINT active_record_1
281457
+ Binary data inserted for `string` type on column `uuid`
281458
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "79df6c39f09752c60677d65fb3f9dcc2965c6b66"], ["version", 2]]
281459
+ Binary data inserted for `string` type on column `code`
281460
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "79df6c39f09752c60677d65fb3f9dcc2965c6b66"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281462
+  (0.0ms) SAVEPOINT active_record_1
281463
+ Binary data inserted for `string` type on column `uuid`
281464
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"], ["version", 2]]
281465
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.533612' WHERE "products"."id" = 5
281466
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281467
+  (0.0ms) SAVEPOINT active_record_1
281468
+ Binary data inserted for `string` type on column `uuid`
281469
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"], ["version", 2]]
281470
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:45:35.535182' WHERE "products"."id" = 5
281471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281472
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281473
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281474
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281475
+  (0.1ms) rollback transaction
281476
+  (0.0ms) begin transaction
281477
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281478
+  (0.0ms) SAVEPOINT active_record_1
281479
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281481
+  (0.0ms) SAVEPOINT active_record_1
281482
+ Binary data inserted for `string` type on column `uuid`
281483
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"], ["version", 2]]
281484
+ Binary data inserted for `string` type on column `uuid`
281485
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"]]
281486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281487
+  (0.0ms) SAVEPOINT active_record_1
281488
+ Binary data inserted for `string` type on column `uuid`
281489
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "619f795f6805aa2b6723aaf6cc158e1df06c6956"], ["version", 2]]
281490
+ Binary data inserted for `string` type on column `code`
281491
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "619f795f6805aa2b6723aaf6cc158e1df06c6956"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281493
+  (0.0ms) SAVEPOINT active_record_1
281494
+ Binary data inserted for `string` type on column `uuid`
281495
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"], ["version", 3]]
281496
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.543756' WHERE "products"."id" = 5
281497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281498
+  (0.0ms) SAVEPOINT active_record_1
281499
+ Binary data inserted for `string` type on column `uuid`
281500
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "619f795f6805aa2b6723aaf6cc158e1df06c6956"], ["version", 3]]
281501
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.545327' WHERE "cheeses"."id" = 5
281502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281503
+  (0.0ms) SAVEPOINT active_record_1
281504
+ Binary data inserted for `string` type on column `uuid`
281505
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"], ["version", 3]]
281506
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 5]]
281507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281508
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281509
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281510
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281511
+  (0.1ms) rollback transaction
281512
+  (0.0ms) begin transaction
281513
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281514
+  (0.0ms) SAVEPOINT active_record_1
281515
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281517
+  (0.0ms) SAVEPOINT active_record_1
281518
+ Binary data inserted for `string` type on column `uuid`
281519
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 2]]
281520
+ Binary data inserted for `string` type on column `uuid`
281521
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"]]
281522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281523
+  (0.0ms) SAVEPOINT active_record_1
281524
+ Binary data inserted for `string` type on column `uuid`
281525
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "d597eec4ff515584bafa15247010ef93626b945b"], ["version", 2]]
281526
+ Binary data inserted for `string` type on column `code`
281527
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "d597eec4ff515584bafa15247010ef93626b945b"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281529
+  (0.0ms) SAVEPOINT active_record_1
281530
+ Binary data inserted for `string` type on column `uuid`
281531
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 3]]
281532
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.555214' WHERE "products"."id" = 5
281533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281534
+  (0.0ms) SAVEPOINT active_record_1
281535
+ Binary data inserted for `string` type on column `uuid`
281536
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 3]]
281537
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:45:35.556977' WHERE "products"."id" = 5
281538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281539
+  (0.0ms) SAVEPOINT active_record_1
281540
+ Binary data inserted for `string` type on column `uuid`
281541
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 3]]
281542
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:45:35.558638' WHERE "products"."id" = 5
281543
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281544
+  (0.0ms) SAVEPOINT active_record_1
281545
+ Binary data inserted for `string` type on column `uuid`
281546
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "d597eec4ff515584bafa15247010ef93626b945b"], ["version", 3]]
281547
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.560266' WHERE "cheeses"."id" = 5
281548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281549
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281550
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281551
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281552
+  (0.1ms) rollback transaction
281553
+  (0.0ms) begin transaction
281554
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281555
+  (0.0ms) SAVEPOINT active_record_1
281556
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281558
+  (0.0ms) SAVEPOINT active_record_1
281559
+ Binary data inserted for `string` type on column `uuid`
281560
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
281561
+ Binary data inserted for `string` type on column `uuid`
281562
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"]]
281563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281564
+  (0.0ms) SAVEPOINT active_record_1
281565
+ Binary data inserted for `string` type on column `uuid`
281566
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "494e171932cdf7a435627eca1148f24db49eaf66"], ["version", 2]]
281567
+ Binary data inserted for `string` type on column `code`
281568
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "494e171932cdf7a435627eca1148f24db49eaf66"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281570
+  (0.0ms) SAVEPOINT active_record_1
281571
+ Binary data inserted for `string` type on column `uuid`
281572
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
281573
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.569200' WHERE "products"."id" = 5
281574
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281575
+  (0.0ms) SAVEPOINT active_record_1
281576
+ Binary data inserted for `string` type on column `uuid`
281577
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
281578
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:45:35.570700' WHERE "products"."id" = 5
281579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281580
+  (0.0ms) SAVEPOINT active_record_1
281581
+ Binary data inserted for `string` type on column `uuid`
281582
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
281583
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 5]]
281584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281585
+  (0.0ms) SAVEPOINT active_record_1
281586
+ Binary data inserted for `string` type on column `uuid`
281587
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "494e171932cdf7a435627eca1148f24db49eaf66"], ["version", 2]]
281588
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 5]]
281589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281590
+  (0.1ms) SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281591
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281592
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281593
+  (0.1ms) rollback transaction
281594
+  (0.0ms) begin transaction
281595
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281596
+  (0.0ms) SAVEPOINT active_record_1
281597
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281599
+  (0.0ms) SAVEPOINT active_record_1
281600
+ Binary data inserted for `string` type on column `uuid`
281601
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a45c123bf03c613bad665af040d2119143b38050"], ["version", 2]]
281602
+ Binary data inserted for `string` type on column `uuid`
281603
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a45c123bf03c613bad665af040d2119143b38050"]]
281604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281605
+  (0.0ms) SAVEPOINT active_record_1
281606
+ Binary data inserted for `string` type on column `uuid`
281607
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "bc81fdbe685e6741573aad5d0c755f08305e3f24"], ["version", 2]]
281608
+ Binary data inserted for `string` type on column `code`
281609
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "bc81fdbe685e6741573aad5d0c755f08305e3f24"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281611
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281612
+  (0.0ms) SAVEPOINT active_record_1
281613
+ Binary data inserted for `string` type on column `uuid`
281614
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "e557dfedff61d2ea262221bafc60d55246f89112"], ["version", 3]]
281615
+ Binary data inserted for `string` type on column `uuid`
281616
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "e557dfedff61d2ea262221bafc60d55246f89112"]]
281617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281618
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281619
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281620
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
281621
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
281622
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
281623
+  (0.1ms) rollback transaction
281624
+  (0.0ms) begin transaction
281625
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281626
+  (0.0ms) SAVEPOINT active_record_1
281627
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281629
+  (0.0ms) SAVEPOINT active_record_1
281630
+ Binary data inserted for `string` type on column `uuid`
281631
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "3449b364072fcf52fd147faf004bad1e0c076f12"], ["version", 2]]
281632
+ Binary data inserted for `string` type on column `uuid`
281633
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "3449b364072fcf52fd147faf004bad1e0c076f12"]]
281634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281635
+  (0.0ms) SAVEPOINT active_record_1
281636
+ Binary data inserted for `string` type on column `uuid`
281637
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "b1848beeed9b9200cd32f6443119c2d29c82cd83"], ["version", 2]]
281638
+ Binary data inserted for `string` type on column `code`
281639
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "b1848beeed9b9200cd32f6443119c2d29c82cd83"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281640
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281641
+  (0.0ms) SAVEPOINT active_record_1
281642
+ Binary data inserted for `string` type on column `uuid`
281643
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "3449b364072fcf52fd147faf004bad1e0c076f12"], ["version", 3]]
281644
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.592539' WHERE "products"."id" = 5
281645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281646
+  (0.0ms) SAVEPOINT active_record_1
281647
+ Binary data inserted for `string` type on column `uuid`
281648
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "b1848beeed9b9200cd32f6443119c2d29c82cd83"], ["version", 3]]
281649
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 5]]
281650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281651
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281652
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281653
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281654
+  (0.1ms) rollback transaction
281655
+  (0.0ms) begin transaction
281656
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281657
+  (0.0ms) SAVEPOINT active_record_1
281658
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281660
+  (0.0ms) SAVEPOINT active_record_1
281661
+ Binary data inserted for `string` type on column `uuid`
281662
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "c381bc827823891cefc4d1fbebeb6eac6cd4fd62"], ["version", 2]]
281663
+ Binary data inserted for `string` type on column `uuid`
281664
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "c381bc827823891cefc4d1fbebeb6eac6cd4fd62"]]
281665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281666
+  (0.0ms) SAVEPOINT active_record_1
281667
+ Binary data inserted for `string` type on column `uuid`
281668
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17b9220fd405060f7f07a674838f86e4b2400377"], ["version", 2]]
281669
+ Binary data inserted for `string` type on column `code`
281670
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "17b9220fd405060f7f07a674838f86e4b2400377"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281672
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281673
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281674
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281675
+  (0.1ms) rollback transaction
281676
+  (0.0ms) begin transaction
281677
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281678
+  (0.0ms) SAVEPOINT active_record_1
281679
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281681
+  (0.1ms) rollback transaction
281682
+  (0.0ms) begin transaction
281683
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281684
+  (0.0ms) SAVEPOINT active_record_1
281685
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281687
+  (0.0ms) SAVEPOINT active_record_1
281688
+ Binary data inserted for `string` type on column `uuid`
281689
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "64823923cfd40120f44b7dae40cba74a8733e241"], ["version", 2]]
281690
+ Binary data inserted for `string` type on column `uuid`
281691
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "64823923cfd40120f44b7dae40cba74a8733e241"]]
281692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281693
+  (0.0ms) SAVEPOINT active_record_1
281694
+ Binary data inserted for `string` type on column `uuid`
281695
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "bc91b12c969141660ef40943755e0dac1c2ad296"], ["version", 2]]
281696
+ Binary data inserted for `string` type on column `code`
281697
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "bc91b12c969141660ef40943755e0dac1c2ad296"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
281698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281699
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281700
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = '64823923cfd40120f44b7dae40cba74a8733e241' LIMIT 1
281701
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281702
+ Cheese Load (0.1ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'bc91b12c969141660ef40943755e0dac1c2ad296' LIMIT 1
281703
+  (0.2ms) rollback transaction
281704
+  (0.0ms) begin transaction
281705
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281706
+  (0.0ms) SAVEPOINT active_record_1
281707
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281709
+  (0.1ms) rollback transaction
281710
+  (0.2ms) begin transaction
281711
+  (0.0ms) rollback transaction
281712
+ Connecting to database specified by database.yml
281713
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281714
+  (0.1ms) begin transaction
281715
+ SQL (2.7ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
281716
+  (16.5ms) commit transaction
281717
+  (0.1ms) begin transaction
281718
+ Binary data inserted for `string` type on column `uuid`
281719
+ SQL (1.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "34f5a839697b3a80bf8bf0c4adf6970e7988dd6a"], ["version", 2]]
281720
+ Binary data inserted for `string` type on column `code`
281721
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "34f5a839697b3a80bf8bf0c4adf6970e7988dd6a"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
281722
+  (30.5ms) commit transaction
281723
+ Traka::Change Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281724
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281725
+  (0.1ms) begin transaction
281726
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 13]]
281727
+  (8.3ms) commit transaction
281728
+  (0.0ms) begin transaction
281729
+ Binary data inserted for `string` type on column `uuid`
281730
+ SQL (0.4ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "4b612529cf887c1dbdf090516fc0c7ab586d501d"], ["version", 2]]
281731
+ Binary data inserted for `string` type on column `code`
281732
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "4b612529cf887c1dbdf090516fc0c7ab586d501d"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
281733
+  (7.0ms) commit transaction
281734
+  (0.1ms) begin transaction
281735
+ Binary data inserted for `string` type on column `uuid`
281736
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "4b612529cf887c1dbdf090516fc0c7ab586d501d"], ["version", 2]]
281737
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 6]]
281738
+  (32.8ms) commit transaction
281739
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281740
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
281741
+  (0.1ms) begin transaction
281742
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 14]]
281743
+  (31.7ms) commit transaction
281744
+  (0.1ms) begin transaction
281745
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 15]]
281746
+  (31.6ms) commit transaction
281747
+  (0.1ms) begin transaction
281748
+ Binary data inserted for `string` type on column `uuid`
281749
+ SQL (0.5ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "ecc823dad8f076dcd610be58e15b3a648de634b9"], ["version", 2]]
281750
+ Binary data inserted for `string` type on column `code`
281751
+ SQL (0.3ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "ecc823dad8f076dcd610be58e15b3a648de634b9"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
281752
+  (33.1ms) commit transaction
281753
+  (0.1ms) begin transaction
281754
+ Binary data inserted for `string` type on column `uuid`
281755
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "ecc823dad8f076dcd610be58e15b3a648de634b9"], ["version", 2]]
281756
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:46:11.694636' WHERE "cheeses"."id" = 7
281757
+  (11.1ms) commit transaction
281758
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281759
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281760
+  (0.0ms) begin transaction
281761
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 16]]
281762
+  (33.1ms) commit transaction
281763
+  (0.1ms) begin transaction
281764
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 17]]
281765
+  (9.7ms) commit transaction
281766
+  (0.1ms) begin transaction
281767
+ Binary data inserted for `string` type on column `uuid`
281768
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "07367640fa45ab4950b3e66c8e19a4e1bcb5e333"], ["version", 2]]
281769
+ Binary data inserted for `string` type on column `code`
281770
+ SQL (0.4ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "07367640fa45ab4950b3e66c8e19a4e1bcb5e333"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
281771
+  (8.3ms) commit transaction
281772
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281773
+  (0.1ms) begin transaction
281774
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 18]]
281775
+  (7.8ms) commit transaction
281776
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281777
+  (0.2ms) begin transaction
281778
+ Binary data inserted for `string` type on column `uuid`
281779
+ SQL (0.4ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "fd73a8d0e3e184d08467142e7e1a994be8f5813b"], ["version", 2]]
281780
+ Binary data inserted for `string` type on column `uuid`
281781
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "fd73a8d0e3e184d08467142e7e1a994be8f5813b"]]
281782
+  (8.2ms) commit transaction
281783
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281784
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281785
+  (0.0ms) begin transaction
281786
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 19]]
281787
+  (10.1ms) commit transaction
281788
+  (0.1ms) begin transaction
281789
+ Binary data inserted for `string` type on column `uuid`
281790
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "7746cfa4279f9b40efbf4dbe963cb353d00373be"], ["version", 2]]
281791
+ Binary data inserted for `string` type on column `uuid`
281792
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "7746cfa4279f9b40efbf4dbe963cb353d00373be"]]
281793
+  (8.2ms) commit transaction
281794
+  (0.1ms) begin transaction
281795
+ Binary data inserted for `string` type on column `uuid`
281796
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "7746cfa4279f9b40efbf4dbe963cb353d00373be"], ["version", 2]]
281797
+ SQL (0.2ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 6]]
281798
+  (17.3ms) commit transaction
281799
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281800
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
281801
+  (0.1ms) begin transaction
281802
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 20]]
281803
+  (51.7ms) commit transaction
281804
+  (0.1ms) begin transaction
281805
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 21]]
281806
+  (11.3ms) commit transaction
281807
+  (0.1ms) begin transaction
281808
+ Binary data inserted for `string` type on column `uuid`
281809
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "0a1a76e17a6c741253579e8963c4da24d74d0e57"], ["version", 2]]
281810
+ Binary data inserted for `string` type on column `uuid`
281811
+ SQL (0.4ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "0a1a76e17a6c741253579e8963c4da24d74d0e57"]]
281812
+  (29.2ms) commit transaction
281813
+  (0.1ms) begin transaction
281814
+ Binary data inserted for `string` type on column `uuid`
281815
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "0a1a76e17a6c741253579e8963c4da24d74d0e57"], ["version", 2]]
281816
+  (0.3ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:46:11.977828' WHERE "products"."id" = 7
281817
+  (40.7ms) commit transaction
281818
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
281819
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
281820
+  (0.1ms) begin transaction
281821
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 22]]
281822
+  (8.5ms) commit transaction
281823
+  (0.1ms) begin transaction
281824
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 23]]
281825
+  (8.1ms) commit transaction
281826
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
281827
+  (0.1ms) begin transaction
281828
+ Binary data inserted for `string` type on column `uuid`
281829
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "e4580ac49d7314af3df37ae58afc4164354c2d03"], ["version", 2]]
281830
+ Binary data inserted for `string` type on column `uuid`
281831
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "e4580ac49d7314af3df37ae58afc4164354c2d03"]]
281832
+  (9.1ms) commit transaction
281833
+  (0.1ms) begin transaction
281834
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281835
+  (0.0ms) SAVEPOINT active_record_1
281836
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
281837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281838
+  (0.0ms) SAVEPOINT active_record_1
281839
+ Binary data inserted for `string` type on column `uuid`
281840
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "3394bd2253719e4137e646e4e2d68b56f39c7e7b"], ["version", 2]]
281841
+ Binary data inserted for `string` type on column `uuid`
281842
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "3394bd2253719e4137e646e4e2d68b56f39c7e7b"]]
281843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281844
+  (0.0ms) SAVEPOINT active_record_1
281845
+ Binary data inserted for `string` type on column `uuid`
281846
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8ec68925aca2123c5febc3b24ba2a225a149b8c0"], ["version", 2]]
281847
+ Binary data inserted for `string` type on column `code`
281848
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8ec68925aca2123c5febc3b24ba2a225a149b8c0"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
281849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281850
+  (0.0ms) SAVEPOINT active_record_1
281851
+ Binary data inserted for `string` type on column `uuid`
281852
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "3394bd2253719e4137e646e4e2d68b56f39c7e7b"], ["version", 2]]
281853
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 9]]
281854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281855
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281856
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281857
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281858
+  (0.1ms) rollback transaction
281859
+  (0.0ms) begin transaction
281860
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281861
+  (0.0ms) SAVEPOINT active_record_1
281862
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
281863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281864
+  (0.0ms) SAVEPOINT active_record_1
281865
+ Binary data inserted for `string` type on column `uuid`
281866
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"], ["version", 2]]
281867
+ Binary data inserted for `string` type on column `uuid`
281868
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"]]
281869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281870
+  (0.0ms) SAVEPOINT active_record_1
281871
+ Binary data inserted for `string` type on column `uuid`
281872
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "7c65b5d7f9f11f90ac8cbb8291ca04d8c8986320"], ["version", 2]]
281873
+ Binary data inserted for `string` type on column `code`
281874
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "7c65b5d7f9f11f90ac8cbb8291ca04d8c8986320"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
281875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281876
+  (0.0ms) SAVEPOINT active_record_1
281877
+ Binary data inserted for `string` type on column `uuid`
281878
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"], ["version", 2]]
281879
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.082603' WHERE "products"."id" = 9
281880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281881
+  (0.0ms) SAVEPOINT active_record_1
281882
+ Binary data inserted for `string` type on column `uuid`
281883
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"], ["version", 2]]
281884
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:46:12.084533' WHERE "products"."id" = 9
281885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281886
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281887
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281888
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
281889
+  (0.1ms) rollback transaction
281890
+  (0.0ms) begin transaction
281891
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281892
+  (0.0ms) SAVEPOINT active_record_1
281893
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
281894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281895
+  (0.0ms) SAVEPOINT active_record_1
281896
+ Binary data inserted for `string` type on column `uuid`
281897
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"], ["version", 2]]
281898
+ Binary data inserted for `string` type on column `uuid`
281899
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"]]
281900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281901
+  (0.0ms) SAVEPOINT active_record_1
281902
+ Binary data inserted for `string` type on column `uuid`
281903
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "4d7dd35ee664ac28af672955cc26a01e37e6d106"], ["version", 2]]
281904
+ Binary data inserted for `string` type on column `code`
281905
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "4d7dd35ee664ac28af672955cc26a01e37e6d106"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
281906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281907
+  (0.0ms) SAVEPOINT active_record_1
281908
+ Binary data inserted for `string` type on column `uuid`
281909
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"], ["version", 3]]
281910
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.093790' WHERE "products"."id" = 9
281911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281912
+  (0.0ms) SAVEPOINT active_record_1
281913
+ Binary data inserted for `string` type on column `uuid`
281914
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "4d7dd35ee664ac28af672955cc26a01e37e6d106"], ["version", 3]]
281915
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.095429' WHERE "cheeses"."id" = 9
281916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281917
+  (0.0ms) SAVEPOINT active_record_1
281918
+ Binary data inserted for `string` type on column `uuid`
281919
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"], ["version", 3]]
281920
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 9]]
281921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281922
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281923
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281924
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281925
+  (0.1ms) rollback transaction
281926
+  (0.0ms) begin transaction
281927
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
281928
+  (0.0ms) SAVEPOINT active_record_1
281929
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
281930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281931
+  (0.0ms) SAVEPOINT active_record_1
281932
+ Binary data inserted for `string` type on column `uuid`
281933
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 2]]
281934
+ Binary data inserted for `string` type on column `uuid`
281935
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"]]
281936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281937
+  (0.0ms) SAVEPOINT active_record_1
281938
+ Binary data inserted for `string` type on column `uuid`
281939
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "9275e077ff5e535ed2c34d3cc37b9b6e1f0703f6"], ["version", 2]]
281940
+ Binary data inserted for `string` type on column `code`
281941
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "9275e077ff5e535ed2c34d3cc37b9b6e1f0703f6"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
281942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281943
+  (0.0ms) SAVEPOINT active_record_1
281944
+ Binary data inserted for `string` type on column `uuid`
281945
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 3]]
281946
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.105002' WHERE "products"."id" = 9
281947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281948
+  (0.0ms) SAVEPOINT active_record_1
281949
+ Binary data inserted for `string` type on column `uuid`
281950
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 3]]
281951
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:46:12.106534' WHERE "products"."id" = 9
281952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281953
+  (0.0ms) SAVEPOINT active_record_1
281954
+ Binary data inserted for `string` type on column `uuid`
281955
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 3]]
281956
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:46:12.108010' WHERE "products"."id" = 9
281957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281958
+  (0.0ms) SAVEPOINT active_record_1
281959
+ Binary data inserted for `string` type on column `uuid`
281960
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "9275e077ff5e535ed2c34d3cc37b9b6e1f0703f6"], ["version", 3]]
281961
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.109442' WHERE "cheeses"."id" = 9
281962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281963
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281964
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281965
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
281966
+  (0.1ms) rollback transaction
281967
+  (0.0ms) begin transaction
281968
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
281969
+  (0.0ms) SAVEPOINT active_record_1
281970
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
281971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281972
+  (0.0ms) SAVEPOINT active_record_1
281973
+ Binary data inserted for `string` type on column `uuid`
281974
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
281975
+ Binary data inserted for `string` type on column `uuid`
281976
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"]]
281977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281978
+  (0.0ms) SAVEPOINT active_record_1
281979
+ Binary data inserted for `string` type on column `uuid`
281980
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "1581f3276cd7ea1a0994df7b9f071d1d4ef558f7"], ["version", 2]]
281981
+ Binary data inserted for `string` type on column `code`
281982
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1581f3276cd7ea1a0994df7b9f071d1d4ef558f7"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
281983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281984
+  (0.0ms) SAVEPOINT active_record_1
281985
+ Binary data inserted for `string` type on column `uuid`
281986
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
281987
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.119162' WHERE "products"."id" = 9
281988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281989
+  (0.0ms) SAVEPOINT active_record_1
281990
+ Binary data inserted for `string` type on column `uuid`
281991
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
281992
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:46:12.120767' WHERE "products"."id" = 9
281993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281994
+  (0.0ms) SAVEPOINT active_record_1
281995
+ Binary data inserted for `string` type on column `uuid`
281996
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
281997
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 9]]
281998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281999
+  (0.0ms) SAVEPOINT active_record_1
282000
+ Binary data inserted for `string` type on column `uuid`
282001
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "1581f3276cd7ea1a0994df7b9f071d1d4ef558f7"], ["version", 2]]
282002
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 9]]
282003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282004
+  (0.1ms) SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282005
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282006
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282007
+  (0.1ms) rollback transaction
282008
+  (0.0ms) begin transaction
282009
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
282010
+  (0.0ms) SAVEPOINT active_record_1
282011
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
282012
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282013
+  (0.0ms) SAVEPOINT active_record_1
282014
+ Binary data inserted for `string` type on column `uuid`
282015
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "6112f33cf1c6a88fd232aa0334baeead3ef2e049"], ["version", 2]]
282016
+ Binary data inserted for `string` type on column `uuid`
282017
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "6112f33cf1c6a88fd232aa0334baeead3ef2e049"]]
282018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282019
+  (0.0ms) SAVEPOINT active_record_1
282020
+ Binary data inserted for `string` type on column `uuid`
282021
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "f3127020b5616a2babcdf1a0e6bf09ef7c93c6a2"], ["version", 2]]
282022
+ Binary data inserted for `string` type on column `code`
282023
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "f3127020b5616a2babcdf1a0e6bf09ef7c93c6a2"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
282024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282025
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282026
+  (0.0ms) SAVEPOINT active_record_1
282027
+ Binary data inserted for `string` type on column `uuid`
282028
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "f84c9e01e777b1c996154226a111197d5a81c31b"], ["version", 3]]
282029
+ Binary data inserted for `string` type on column `uuid`
282030
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "f84c9e01e777b1c996154226a111197d5a81c31b"]]
282031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282032
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
282033
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
282034
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
282035
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
282036
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
282037
+  (0.1ms) rollback transaction
282038
+  (0.0ms) begin transaction
282039
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
282040
+  (0.0ms) SAVEPOINT active_record_1
282041
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
282042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282043
+  (0.0ms) SAVEPOINT active_record_1
282044
+ Binary data inserted for `string` type on column `uuid`
282045
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "c0defc07a05642d7bff2ce00b6e33277b0b49168"], ["version", 2]]
282046
+ Binary data inserted for `string` type on column `uuid`
282047
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "c0defc07a05642d7bff2ce00b6e33277b0b49168"]]
282048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282049
+  (0.0ms) SAVEPOINT active_record_1
282050
+ Binary data inserted for `string` type on column `uuid`
282051
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "decf2e89fbaa2a6d98b8dc7a900b498eebdd2d67"], ["version", 2]]
282052
+ Binary data inserted for `string` type on column `code`
282053
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "decf2e89fbaa2a6d98b8dc7a900b498eebdd2d67"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
282054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282055
+  (0.0ms) SAVEPOINT active_record_1
282056
+ Binary data inserted for `string` type on column `uuid`
282057
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "c0defc07a05642d7bff2ce00b6e33277b0b49168"], ["version", 3]]
282058
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.141240' WHERE "products"."id" = 9
282059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282060
+  (0.0ms) SAVEPOINT active_record_1
282061
+ Binary data inserted for `string` type on column `uuid`
282062
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "decf2e89fbaa2a6d98b8dc7a900b498eebdd2d67"], ["version", 3]]
282063
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 9]]
282064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282065
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
282066
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
282067
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
282068
+  (0.1ms) rollback transaction
282069
+  (0.0ms) begin transaction
282070
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
282071
+  (0.0ms) SAVEPOINT active_record_1
282072
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
282073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282074
+  (0.0ms) SAVEPOINT active_record_1
282075
+ Binary data inserted for `string` type on column `uuid`
282076
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "16880e9f4350580c59946b1245170faa03619347"], ["version", 2]]
282077
+ Binary data inserted for `string` type on column `uuid`
282078
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "16880e9f4350580c59946b1245170faa03619347"]]
282079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282080
+  (0.0ms) SAVEPOINT active_record_1
282081
+ Binary data inserted for `string` type on column `uuid`
282082
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "84da369583f64f8d7d2775ac1222dc966c90fb7c"], ["version", 2]]
282083
+ Binary data inserted for `string` type on column `code`
282084
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "84da369583f64f8d7d2775ac1222dc966c90fb7c"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
282085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282086
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282087
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282088
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282089
+  (0.1ms) rollback transaction
282090
+  (0.0ms) begin transaction
282091
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
282092
+  (0.0ms) SAVEPOINT active_record_1
282093
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
282094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282095
+  (0.1ms) rollback transaction
282096
+  (0.0ms) begin transaction
282097
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
282098
+  (0.0ms) SAVEPOINT active_record_1
282099
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
282100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282101
+  (0.0ms) SAVEPOINT active_record_1
282102
+ Binary data inserted for `string` type on column `uuid`
282103
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "59072c75d25c22a8e5fc35d415a37c80441ab38b"], ["version", 2]]
282104
+ Binary data inserted for `string` type on column `uuid`
282105
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "59072c75d25c22a8e5fc35d415a37c80441ab38b"]]
282106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282107
+  (0.0ms) SAVEPOINT active_record_1
282108
+ Binary data inserted for `string` type on column `uuid`
282109
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "dbcf0c5c100a5ca54846916fa3dcda3963eac5e6"], ["version", 2]]
282110
+ Binary data inserted for `string` type on column `code`
282111
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "dbcf0c5c100a5ca54846916fa3dcda3963eac5e6"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
282112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282113
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282114
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = '59072c75d25c22a8e5fc35d415a37c80441ab38b' LIMIT 1
282115
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
282116
+ Cheese Load (0.1ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'dbcf0c5c100a5ca54846916fa3dcda3963eac5e6' LIMIT 1
282117
+  (0.1ms) rollback transaction
282118
+  (0.0ms) begin transaction
282119
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
282120
+  (0.0ms) SAVEPOINT active_record_1
282121
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
282122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
282123
+  (0.1ms) rollback transaction
282124
+  (0.1ms) begin transaction
282125
+  (0.0ms) rollback transaction