traka 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -102,15 +102,15 @@ Obviously, all options above can be mixed and matched in logical ways.
102
102
  To see the current version:
103
103
 
104
104
  ```ruby
105
- Traka::Change.latest_version
105
+ Traka::Change.latest_version #=> 0
106
106
  ```
107
107
 
108
108
  To publish a new version:
109
109
 
110
110
  ```ruby
111
- Traka::Change.latest_version #=> 1
111
+ Traka::Change.latest_version #=> 0
112
112
  Traka::Change.publish_new_version!
113
- Traka::Change.latest_version #=> 2
113
+ Traka::Change.latest_version #=> 1
114
114
  ```
115
115
 
116
116
  ## Example
@@ -122,7 +122,7 @@ Assuming models called Product and Car exist.
122
122
  b = Product.create(:name => "Product 2")
123
123
  c = Car.create(:name => "Car 1")
124
124
 
125
- Traka::Change.latest_version #=> 1
125
+ Traka::Change.latest_version #=> 0
126
126
  Traka::Change.changes #=> [<Traka::Change><create>, <Traka::Change><create>, <Traka::Change><create>]
127
127
 
128
128
  b.name = "New name"
@@ -133,7 +133,7 @@ Assuming models called Product and Car exist.
133
133
 
134
134
  Traka::Change.publish_new_version!
135
135
 
136
- Traka::Change.latest_version #=> 2
136
+ Traka::Change.latest_version #=> 1
137
137
 
138
138
  b.destroy
139
139
  a.name = "New name"
@@ -36,6 +36,8 @@ module Traka
36
36
  :actions => [],
37
37
  :only => []}.merge(opts)
38
38
 
39
+ return [] if invalid_version?(opts[:version])
40
+
39
41
  # If version is specified, return only published changes from v onwards.
40
42
  # Otherwise, return only unstaged changes.
41
43
  unless opts[:version].is_a?(Range)
@@ -63,6 +65,12 @@ module Traka
63
65
 
64
66
  private
65
67
 
68
+ def invalid_version?(v)
69
+ (v.is_a?(Fixnum) and v > latest_version) or
70
+ (v.is_a?(Range) and v.begin > latest_version) or
71
+ (v.is_a?(Range) and v.begin > v.end)
72
+ end
73
+
66
74
  def version_path
67
75
  File.join(
68
76
  Rails.root, "public", "system",
@@ -1,3 +1,3 @@
1
1
  module Traka
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
Binary file
@@ -296722,3 +296722,1193 @@ Binary data inserted for `string` type on column `code`
296722
296722
   (0.1ms) rollback transaction
296723
296723
   (0.0ms) begin transaction
296724
296724
   (0.0ms) rollback transaction
296725
+ Connecting to database specified by database.yml
296726
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
296727
+  (0.1ms) begin transaction
296728
+ SQL (3.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 348]]
296729
+  (87.1ms) commit transaction
296730
+  (0.1ms) begin transaction
296731
+ Binary data inserted for `string` type on column `uuid`
296732
+ SQL (2.6ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "cf767bdb7a3c1a42a0fe8cbd3eaf09692b9ed979"], ["version", 1]]
296733
+ Binary data inserted for `string` type on column `code`
296734
+ SQL (0.7ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "cf767bdb7a3c1a42a0fe8cbd3eaf09692b9ed979"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296735
+  (60.1ms) commit transaction
296736
+ Traka::Change Load (0.5ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
296737
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
296738
+  (0.1ms) begin transaction
296739
+ SQL (0.4ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 349]]
296740
+  (22.5ms) commit transaction
296741
+  (0.1ms) begin transaction
296742
+ Binary data inserted for `string` type on column `uuid`
296743
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "ebd2e5fa55dfa0065e9c0b46396f0230010bb171"], ["version", 1]]
296744
+ Binary data inserted for `string` type on column `code`
296745
+ SQL (0.6ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "ebd2e5fa55dfa0065e9c0b46396f0230010bb171"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296746
+  (57.1ms) commit transaction
296747
+  (0.1ms) begin transaction
296748
+ Binary data inserted for `string` type on column `uuid`
296749
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "ebd2e5fa55dfa0065e9c0b46396f0230010bb171"], ["version", 1]]
296750
+ SQL (0.3ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 118]]
296751
+  (45.1ms) commit transaction
296752
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
296753
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
296754
+  (0.1ms) begin transaction
296755
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 350]]
296756
+  (15.7ms) commit transaction
296757
+  (0.1ms) begin transaction
296758
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 351]]
296759
+  (11.0ms) commit transaction
296760
+  (0.1ms) begin transaction
296761
+ Binary data inserted for `string` type on column `uuid`
296762
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "62ae9b7dd673ac121f362688bd6ea340fd2465d4"], ["version", 1]]
296763
+ Binary data inserted for `string` type on column `code`
296764
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "62ae9b7dd673ac121f362688bd6ea340fd2465d4"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296765
+  (29.5ms) commit transaction
296766
+  (0.1ms) begin transaction
296767
+ Binary data inserted for `string` type on column `uuid`
296768
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "62ae9b7dd673ac121f362688bd6ea340fd2465d4"], ["version", 1]]
296769
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:09:06.327032' WHERE "cheeses"."id" = 119
296770
+  (17.4ms) commit transaction
296771
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
296772
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
296773
+  (0.1ms) begin transaction
296774
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 352]]
296775
+  (8.7ms) commit transaction
296776
+  (0.1ms) begin transaction
296777
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 353]]
296778
+  (7.6ms) commit transaction
296779
+  (0.1ms) begin transaction
296780
+ Binary data inserted for `string` type on column `uuid`
296781
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "8f71fb37c721b04f506e5f2295c049d594860897"], ["version", 1]]
296782
+ Binary data inserted for `string` type on column `code`
296783
+ SQL (0.6ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8f71fb37c721b04f506e5f2295c049d594860897"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296784
+  (8.4ms) commit transaction
296785
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
296786
+  (0.1ms) begin transaction
296787
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 354]]
296788
+  (31.8ms) commit transaction
296789
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
296790
+  (0.1ms) begin transaction
296791
+ Binary data inserted for `string` type on column `uuid`
296792
+ SQL (0.4ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "9f9facbc51d11bcd696648100874880bfd89f0ef"], ["version", 1]]
296793
+ Binary data inserted for `string` type on column `uuid`
296794
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "9f9facbc51d11bcd696648100874880bfd89f0ef"]]
296795
+  (8.8ms) commit transaction
296796
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
296797
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
296798
+  (0.1ms) begin transaction
296799
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 355]]
296800
+  (122.3ms) commit transaction
296801
+  (0.1ms) begin transaction
296802
+ Binary data inserted for `string` type on column `uuid`
296803
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bedf69b0a8e4795d3673a661381f539aca0b1ceb"], ["version", 1]]
296804
+ Binary data inserted for `string` type on column `uuid`
296805
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bedf69b0a8e4795d3673a661381f539aca0b1ceb"]]
296806
+  (28.6ms) commit transaction
296807
+  (0.2ms) begin transaction
296808
+ Binary data inserted for `string` type on column `uuid`
296809
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bedf69b0a8e4795d3673a661381f539aca0b1ceb"], ["version", 1]]
296810
+ SQL (0.3ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 118]]
296811
+  (10.6ms) commit transaction
296812
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
296813
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
296814
+  (0.1ms) begin transaction
296815
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 356]]
296816
+  (16.0ms) commit transaction
296817
+  (0.1ms) begin transaction
296818
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 357]]
296819
+  (7.8ms) commit transaction
296820
+  (0.1ms) begin transaction
296821
+ Binary data inserted for `string` type on column `uuid`
296822
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "24de5eaf02e40ae3893e6fc837b41ecd0fcbf70c"], ["version", 1]]
296823
+ Binary data inserted for `string` type on column `uuid`
296824
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "24de5eaf02e40ae3893e6fc837b41ecd0fcbf70c"]]
296825
+  (8.4ms) commit transaction
296826
+  (0.1ms) begin transaction
296827
+ Binary data inserted for `string` type on column `uuid`
296828
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "24de5eaf02e40ae3893e6fc837b41ecd0fcbf70c"], ["version", 1]]
296829
+  (0.3ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:09:06.681441' WHERE "products"."id" = 119
296830
+  (6.5ms) commit transaction
296831
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
296832
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
296833
+  (0.1ms) begin transaction
296834
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 358]]
296835
+  (7.8ms) commit transaction
296836
+  (0.1ms) begin transaction
296837
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 359]]
296838
+  (8.5ms) commit transaction
296839
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
296840
+  (0.1ms) begin transaction
296841
+ Binary data inserted for `string` type on column `uuid`
296842
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "11c065d7ca1b0ceac1acebc3eed091f3a6ee6711"], ["version", 1]]
296843
+ Binary data inserted for `string` type on column `uuid`
296844
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "11c065d7ca1b0ceac1acebc3eed091f3a6ee6711"]]
296845
+  (43.0ms) commit transaction
296846
+  (0.2ms) begin transaction
296847
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
296848
+  (0.1ms) SAVEPOINT active_record_1
296849
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
296850
+  (0.1ms) RELEASE SAVEPOINT active_record_1
296851
+  (0.1ms) SAVEPOINT active_record_1
296852
+ Binary data inserted for `string` type on column `uuid`
296853
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f7c3e54a651abaac1fa086c3148d92d3a7cb30ec"], ["version", 1]]
296854
+ Binary data inserted for `string` type on column `uuid`
296855
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f7c3e54a651abaac1fa086c3148d92d3a7cb30ec"]]
296856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296857
+  (0.0ms) SAVEPOINT active_record_1
296858
+ Binary data inserted for `string` type on column `uuid`
296859
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fa351a255eb22a92d7b31cd54c53895f7ca6c65c"], ["version", 1]]
296860
+ Binary data inserted for `string` type on column `code`
296861
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "fa351a255eb22a92d7b31cd54c53895f7ca6c65c"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296863
+  (0.0ms) SAVEPOINT active_record_1
296864
+ Binary data inserted for `string` type on column `uuid`
296865
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f7c3e54a651abaac1fa086c3148d92d3a7cb30ec"], ["version", 1]]
296866
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.780477' WHERE "products"."id" = 121
296867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296868
+  (0.0ms) SAVEPOINT active_record_1
296869
+ Binary data inserted for `string` type on column `uuid`
296870
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f7c3e54a651abaac1fa086c3148d92d3a7cb30ec"], ["version", 1]]
296871
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.782094' WHERE "products"."id" = 121
296872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296873
+  (0.0ms) SAVEPOINT active_record_1
296874
+ Binary data inserted for `string` type on column `uuid`
296875
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f7c3e54a651abaac1fa086c3148d92d3a7cb30ec"], ["version", 1]]
296876
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
296877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296878
+  (0.0ms) SAVEPOINT active_record_1
296879
+ Binary data inserted for `string` type on column `uuid`
296880
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fa351a255eb22a92d7b31cd54c53895f7ca6c65c"], ["version", 1]]
296881
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 121]]
296882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296883
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
296884
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
296885
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
296886
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update'))
296887
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))
296888
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))
296889
+  (0.1ms) rollback transaction
296890
+  (0.0ms) begin transaction
296891
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
296892
+  (0.0ms) SAVEPOINT active_record_1
296893
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
296894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296895
+  (0.0ms) SAVEPOINT active_record_1
296896
+ Binary data inserted for `string` type on column `uuid`
296897
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "b6c1d8818801650c61d4842c881e19c68a0fc9f4"], ["version", 1]]
296898
+ Binary data inserted for `string` type on column `uuid`
296899
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "b6c1d8818801650c61d4842c881e19c68a0fc9f4"]]
296900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296901
+  (0.0ms) SAVEPOINT active_record_1
296902
+ Binary data inserted for `string` type on column `uuid`
296903
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "714a48c4236a046a9075a6b24c9f7bb23c98338f"], ["version", 1]]
296904
+ Binary data inserted for `string` type on column `code`
296905
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "714a48c4236a046a9075a6b24c9f7bb23c98338f"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296907
+  (0.0ms) SAVEPOINT active_record_1
296908
+ Binary data inserted for `string` type on column `uuid`
296909
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "b6c1d8818801650c61d4842c881e19c68a0fc9f4"], ["version", 1]]
296910
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
296911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296912
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
296913
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
296914
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
296915
+  (0.1ms) rollback transaction
296916
+  (0.0ms) begin transaction
296917
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
296918
+  (0.0ms) SAVEPOINT active_record_1
296919
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
296920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296921
+  (0.0ms) SAVEPOINT active_record_1
296922
+ Binary data inserted for `string` type on column `uuid`
296923
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "4a7b11f9b64d57920ff8d0bc8fabddeb4998b7e3"], ["version", 1]]
296924
+ Binary data inserted for `string` type on column `uuid`
296925
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "4a7b11f9b64d57920ff8d0bc8fabddeb4998b7e3"]]
296926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296927
+  (0.0ms) SAVEPOINT active_record_1
296928
+ Binary data inserted for `string` type on column `uuid`
296929
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "ce9f26ef211bb02a28fc5812cf722c00af9b2819"], ["version", 1]]
296930
+ Binary data inserted for `string` type on column `code`
296931
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "ce9f26ef211bb02a28fc5812cf722c00af9b2819"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296933
+  (0.0ms) SAVEPOINT active_record_1
296934
+ Binary data inserted for `string` type on column `uuid`
296935
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "4a7b11f9b64d57920ff8d0bc8fabddeb4998b7e3"], ["version", 1]]
296936
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.806958' WHERE "products"."id" = 121
296937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296938
+  (0.0ms) SAVEPOINT active_record_1
296939
+ Binary data inserted for `string` type on column `uuid`
296940
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "4a7b11f9b64d57920ff8d0bc8fabddeb4998b7e3"], ["version", 1]]
296941
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.808544' WHERE "products"."id" = 121
296942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296943
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
296944
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
296945
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
296946
+  (0.1ms) rollback transaction
296947
+  (0.0ms) begin transaction
296948
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
296949
+  (0.0ms) SAVEPOINT active_record_1
296950
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
296951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296952
+  (0.0ms) SAVEPOINT active_record_1
296953
+ Binary data inserted for `string` type on column `uuid`
296954
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fc3baae735ec3d755b12d3ac032fa26403718321"], ["version", 1]]
296955
+ Binary data inserted for `string` type on column `uuid`
296956
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fc3baae735ec3d755b12d3ac032fa26403718321"]]
296957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296958
+  (0.0ms) SAVEPOINT active_record_1
296959
+ Binary data inserted for `string` type on column `uuid`
296960
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "da5a20acc79e3b3bea62190bcf182d1fee80d38b"], ["version", 1]]
296961
+ Binary data inserted for `string` type on column `code`
296962
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "da5a20acc79e3b3bea62190bcf182d1fee80d38b"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296964
+  (0.0ms) SAVEPOINT active_record_1
296965
+ Binary data inserted for `string` type on column `uuid`
296966
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fc3baae735ec3d755b12d3ac032fa26403718321"], ["version", 2]]
296967
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.817022' WHERE "products"."id" = 121
296968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296969
+  (0.0ms) SAVEPOINT active_record_1
296970
+ Binary data inserted for `string` type on column `uuid`
296971
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "da5a20acc79e3b3bea62190bcf182d1fee80d38b"], ["version", 2]]
296972
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.818558' WHERE "cheeses"."id" = 121
296973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296974
+  (0.0ms) SAVEPOINT active_record_1
296975
+ Binary data inserted for `string` type on column `uuid`
296976
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fc3baae735ec3d755b12d3ac032fa26403718321"], ["version", 2]]
296977
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
296978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296979
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
296980
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
296981
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
296982
+  (0.1ms) rollback transaction
296983
+  (0.0ms) begin transaction
296984
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
296985
+  (0.0ms) SAVEPOINT active_record_1
296986
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
296987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296988
+  (0.0ms) SAVEPOINT active_record_1
296989
+ Binary data inserted for `string` type on column `uuid`
296990
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "23725eef236c2ad941e877fa74f512769b7af2b3"], ["version", 1]]
296991
+ Binary data inserted for `string` type on column `uuid`
296992
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "23725eef236c2ad941e877fa74f512769b7af2b3"]]
296993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296994
+  (0.0ms) SAVEPOINT active_record_1
296995
+ Binary data inserted for `string` type on column `uuid`
296996
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f5cae22cafd00722e58bba14772090c92b3e25db"], ["version", 1]]
296997
+ Binary data inserted for `string` type on column `code`
296998
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "f5cae22cafd00722e58bba14772090c92b3e25db"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
296999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297000
+  (0.0ms) SAVEPOINT active_record_1
297001
+ Binary data inserted for `string` type on column `uuid`
297002
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "23725eef236c2ad941e877fa74f512769b7af2b3"], ["version", 2]]
297003
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.829395' WHERE "products"."id" = 121
297004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297005
+  (0.0ms) SAVEPOINT active_record_1
297006
+ Binary data inserted for `string` type on column `uuid`
297007
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "23725eef236c2ad941e877fa74f512769b7af2b3"], ["version", 2]]
297008
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.831098' WHERE "products"."id" = 121
297009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297010
+  (0.0ms) SAVEPOINT active_record_1
297011
+ Binary data inserted for `string` type on column `uuid`
297012
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "23725eef236c2ad941e877fa74f512769b7af2b3"], ["version", 2]]
297013
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-13 23:09:06.832827' WHERE "products"."id" = 121
297014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297015
+  (0.0ms) SAVEPOINT active_record_1
297016
+ Binary data inserted for `string` type on column `uuid`
297017
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f5cae22cafd00722e58bba14772090c92b3e25db"], ["version", 2]]
297018
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.834484' WHERE "cheeses"."id" = 121
297019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297020
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297021
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297022
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297023
+  (0.1ms) rollback transaction
297024
+  (0.0ms) begin transaction
297025
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297026
+  (0.0ms) SAVEPOINT active_record_1
297027
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297029
+  (0.0ms) SAVEPOINT active_record_1
297030
+ Binary data inserted for `string` type on column `uuid`
297031
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bc82148e1aec6116e6f15a3e24a75940916cd652"], ["version", 1]]
297032
+ Binary data inserted for `string` type on column `uuid`
297033
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bc82148e1aec6116e6f15a3e24a75940916cd652"]]
297034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297035
+  (0.0ms) SAVEPOINT active_record_1
297036
+ Binary data inserted for `string` type on column `uuid`
297037
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "482becdd3cde3dea0a0c1a66f5f459f250f655ba"], ["version", 1]]
297038
+ Binary data inserted for `string` type on column `code`
297039
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "482becdd3cde3dea0a0c1a66f5f459f250f655ba"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297041
+  (0.0ms) SAVEPOINT active_record_1
297042
+ Binary data inserted for `string` type on column `uuid`
297043
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bc82148e1aec6116e6f15a3e24a75940916cd652"], ["version", 1]]
297044
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.843535' WHERE "products"."id" = 121
297045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297046
+  (0.0ms) SAVEPOINT active_record_1
297047
+ Binary data inserted for `string` type on column `uuid`
297048
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "bc82148e1aec6116e6f15a3e24a75940916cd652"], ["version", 1]]
297049
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.845052' WHERE "products"."id" = 121
297050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297051
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
297052
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
297053
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
297054
+  (0.1ms) rollback transaction
297055
+  (0.0ms) begin transaction
297056
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297057
+  (0.0ms) SAVEPOINT active_record_1
297058
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297060
+  (0.0ms) SAVEPOINT active_record_1
297061
+ Binary data inserted for `string` type on column `uuid`
297062
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "3470315a9e0282172a61863a758692ae6650c362"], ["version", 1]]
297063
+ Binary data inserted for `string` type on column `uuid`
297064
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "3470315a9e0282172a61863a758692ae6650c362"]]
297065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297066
+  (0.0ms) SAVEPOINT active_record_1
297067
+ Binary data inserted for `string` type on column `uuid`
297068
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "c50cc9bdac1820af92e24793491285ebbbe67aa3"], ["version", 1]]
297069
+ Binary data inserted for `string` type on column `code`
297070
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c50cc9bdac1820af92e24793491285ebbbe67aa3"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297072
+  (0.0ms) SAVEPOINT active_record_1
297073
+ Binary data inserted for `string` type on column `uuid`
297074
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "3470315a9e0282172a61863a758692ae6650c362"], ["version", 1]]
297075
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.853217' WHERE "products"."id" = 121
297076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297077
+  (0.0ms) SAVEPOINT active_record_1
297078
+ Binary data inserted for `string` type on column `uuid`
297079
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "c50cc9bdac1820af92e24793491285ebbbe67aa3"], ["version", 1]]
297080
+  (0.1ms) UPDATE "cheeses" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.854721' WHERE "cheeses"."id" = 121
297081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297082
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
297083
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
297084
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
297085
+  (0.1ms) rollback transaction
297086
+  (0.0ms) begin transaction
297087
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297088
+  (0.0ms) SAVEPOINT active_record_1
297089
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297091
+  (0.0ms) SAVEPOINT active_record_1
297092
+ Binary data inserted for `string` type on column `uuid`
297093
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f28eb89956065a1e700ea2295de588fc05973224"], ["version", 1]]
297094
+ Binary data inserted for `string` type on column `uuid`
297095
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f28eb89956065a1e700ea2295de588fc05973224"]]
297096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297097
+  (0.0ms) SAVEPOINT active_record_1
297098
+ Binary data inserted for `string` type on column `uuid`
297099
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "55c5e399a12e389ef01cc08451b00cffd61e90ea"], ["version", 1]]
297100
+ Binary data inserted for `string` type on column `code`
297101
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "55c5e399a12e389ef01cc08451b00cffd61e90ea"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297103
+  (0.0ms) SAVEPOINT active_record_1
297104
+ Binary data inserted for `string` type on column `uuid`
297105
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f28eb89956065a1e700ea2295de588fc05973224"], ["version", 1]]
297106
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.864044' WHERE "products"."id" = 121
297107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297108
+  (0.0ms) SAVEPOINT active_record_1
297109
+ Binary data inserted for `string` type on column `uuid`
297110
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f28eb89956065a1e700ea2295de588fc05973224"], ["version", 1]]
297111
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.865744' WHERE "products"."id" = 121
297112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297113
+  (0.0ms) SAVEPOINT active_record_1
297114
+ Binary data inserted for `string` type on column `uuid`
297115
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "f28eb89956065a1e700ea2295de588fc05973224"], ["version", 1]]
297116
+ SQL (0.0ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
297117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297118
+  (0.1ms) SAVEPOINT active_record_1
297119
+ Binary data inserted for `string` type on column `uuid`
297120
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "55c5e399a12e389ef01cc08451b00cffd61e90ea"], ["version", 1]]
297121
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 121]]
297122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297123
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297124
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297125
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297126
+  (0.1ms) rollback transaction
297127
+  (0.0ms) begin transaction
297128
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297129
+  (0.0ms) SAVEPOINT active_record_1
297130
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297132
+  (0.0ms) SAVEPOINT active_record_1
297133
+ Binary data inserted for `string` type on column `uuid`
297134
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "b8c429db154d035715b857da6ebbe203d52a7e4b"], ["version", 1]]
297135
+ Binary data inserted for `string` type on column `uuid`
297136
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "b8c429db154d035715b857da6ebbe203d52a7e4b"]]
297137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297138
+  (0.0ms) SAVEPOINT active_record_1
297139
+ Binary data inserted for `string` type on column `uuid`
297140
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "c168d91aa2b9262f56e7f864f74aa5651af6da2f"], ["version", 1]]
297141
+ Binary data inserted for `string` type on column `code`
297142
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c168d91aa2b9262f56e7f864f74aa5651af6da2f"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297144
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297145
+  (0.0ms) SAVEPOINT active_record_1
297146
+ Binary data inserted for `string` type on column `uuid`
297147
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "0048344e38c1c231f53d6f75d4f255ee93f3846f"], ["version", 2]]
297148
+ Binary data inserted for `string` type on column `uuid`
297149
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "0048344e38c1c231f53d6f75d4f255ee93f3846f"]]
297150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297151
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297152
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297153
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
297154
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
297155
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
297156
+  (0.1ms) rollback transaction
297157
+  (0.0ms) begin transaction
297158
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297159
+  (0.0ms) SAVEPOINT active_record_1
297160
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297162
+  (0.0ms) SAVEPOINT active_record_1
297163
+ Binary data inserted for `string` type on column `uuid`
297164
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "a2576747a1286775732622381d8949c0998bce59"], ["version", 1]]
297165
+ Binary data inserted for `string` type on column `uuid`
297166
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "a2576747a1286775732622381d8949c0998bce59"]]
297167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297168
+  (0.0ms) SAVEPOINT active_record_1
297169
+ Binary data inserted for `string` type on column `uuid`
297170
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "e6c2e554d0320c1287b1dedbc03035f8abe7138f"], ["version", 1]]
297171
+ Binary data inserted for `string` type on column `code`
297172
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e6c2e554d0320c1287b1dedbc03035f8abe7138f"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297174
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297175
+  (0.0ms) SAVEPOINT active_record_1
297176
+ Binary data inserted for `string` type on column `uuid`
297177
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "ece44de268d10905dbce2cc49040909f872d2a1f"], ["version", 2]]
297178
+ Binary data inserted for `string` type on column `uuid`
297179
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "ece44de268d10905dbce2cc49040909f872d2a1f"]]
297180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297181
+  (0.0ms) SAVEPOINT active_record_1
297182
+ Binary data inserted for `string` type on column `uuid`
297183
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "0a8a8e363f6f6a6bb7bcaea106177d9de3ef889f"], ["version", 3]]
297184
+ Binary data inserted for `string` type on column `uuid`
297185
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product C"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "0a8a8e363f6f6a6bb7bcaea106177d9de3ef889f"]]
297186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297187
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))
297188
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))
297189
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
297190
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
297191
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
297192
+  (0.1ms) rollback transaction
297193
+  (0.0ms) begin transaction
297194
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297195
+  (0.0ms) SAVEPOINT active_record_1
297196
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297198
+  (0.0ms) SAVEPOINT active_record_1
297199
+ Binary data inserted for `string` type on column `uuid`
297200
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "cef6345b9960ade477716080b29775099f52e185"], ["version", 1]]
297201
+ Binary data inserted for `string` type on column `uuid`
297202
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "cef6345b9960ade477716080b29775099f52e185"]]
297203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297204
+  (0.0ms) SAVEPOINT active_record_1
297205
+ Binary data inserted for `string` type on column `uuid`
297206
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fa354a1fabb4ad679dd17be3d66598e12ea18186"], ["version", 1]]
297207
+ Binary data inserted for `string` type on column `code`
297208
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "fa354a1fabb4ad679dd17be3d66598e12ea18186"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297210
+  (0.0ms) SAVEPOINT active_record_1
297211
+ Binary data inserted for `string` type on column `uuid`
297212
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "cef6345b9960ade477716080b29775099f52e185"], ["version", 2]]
297213
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.900976' WHERE "products"."id" = 121
297214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297215
+  (0.0ms) SAVEPOINT active_record_1
297216
+ Binary data inserted for `string` type on column `uuid`
297217
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fa354a1fabb4ad679dd17be3d66598e12ea18186"], ["version", 2]]
297218
+ SQL (0.0ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 121]]
297219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297220
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297221
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297222
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297223
+  (0.1ms) rollback transaction
297224
+  (0.0ms) begin transaction
297225
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297226
+  (0.0ms) SAVEPOINT active_record_1
297227
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297229
+  (0.0ms) SAVEPOINT active_record_1
297230
+ Binary data inserted for `string` type on column `uuid`
297231
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "d47d43e4fbd4d7c4ceb2522de94a0fd2c692ebfc"], ["version", 1]]
297232
+ Binary data inserted for `string` type on column `uuid`
297233
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "d47d43e4fbd4d7c4ceb2522de94a0fd2c692ebfc"]]
297234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297235
+  (0.0ms) SAVEPOINT active_record_1
297236
+ Binary data inserted for `string` type on column `uuid`
297237
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "836684608e2d8945fe3c0f6fc813c71ab8eb9532"], ["version", 1]]
297238
+ Binary data inserted for `string` type on column `code`
297239
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "836684608e2d8945fe3c0f6fc813c71ab8eb9532"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297241
+  (0.0ms) SAVEPOINT active_record_1
297242
+ Binary data inserted for `string` type on column `uuid`
297243
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "8869a45a3b87c4ba30d9d79b0970518960bb21ee"], ["version", 2]]
297244
+ Binary data inserted for `string` type on column `uuid`
297245
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "8869a45a3b87c4ba30d9d79b0970518960bb21ee"]]
297246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297247
+  (0.0ms) SAVEPOINT active_record_1
297248
+ Binary data inserted for `string` type on column `uuid`
297249
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "6b17f6344e3db48ddb95c6231df02290df89e800"], ["version", 2]]
297250
+ Binary data inserted for `string` type on column `code`
297251
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "6b17f6344e3db48ddb95c6231df02290df89e800"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297253
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297254
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297255
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297256
+  (0.1ms) rollback transaction
297257
+  (0.0ms) begin transaction
297258
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297259
+  (0.0ms) SAVEPOINT active_record_1
297260
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297262
+  (0.3ms) rollback transaction
297263
+  (0.1ms) begin transaction
297264
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" 
297265
+  (0.1ms) SAVEPOINT active_record_1
297266
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297268
+  (0.1ms) SAVEPOINT active_record_1
297269
+ Binary data inserted for `string` type on column `uuid`
297270
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fb70c3ddeb838a50108dbbdeb857273a27fbaff1"], ["version", 1]]
297271
+ Binary data inserted for `string` type on column `uuid`
297272
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "fb70c3ddeb838a50108dbbdeb857273a27fbaff1"]]
297273
+  (0.2ms) RELEASE SAVEPOINT active_record_1
297274
+  (0.0ms) SAVEPOINT active_record_1
297275
+ Binary data inserted for `string` type on column `uuid`
297276
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["uuid", "8b9a2cf35397bbfa29597e02c515674120bf0709"], ["version", 1]]
297277
+ Binary data inserted for `string` type on column `code`
297278
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8b9a2cf35397bbfa29597e02c515674120bf0709"], ["created_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:09:06 UTC +00:00]]
297279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297280
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297281
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = 'fb70c3ddeb838a50108dbbdeb857273a27fbaff1' LIMIT 1
297282
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297283
+ Cheese Load (0.1ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = '8b9a2cf35397bbfa29597e02c515674120bf0709' LIMIT 1
297284
+  (0.1ms) rollback transaction
297285
+  (0.0ms) begin transaction
297286
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297287
+  (0.0ms) SAVEPOINT active_record_1
297288
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297290
+  (0.1ms) rollback transaction
297291
+  (0.0ms) begin transaction
297292
+  (0.0ms) rollback transaction
297293
+ Connecting to database specified by database.yml
297294
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297295
+  (0.0ms) begin transaction
297296
+ SQL (2.8ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
297297
+  (16.1ms) commit transaction
297298
+  (0.1ms) begin transaction
297299
+ Binary data inserted for `string` type on column `uuid`
297300
+ SQL (1.0ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "1e5a47f8173bf402bd2d4b7aaa9f5857c92e8185"], ["version", 1]]
297301
+ Binary data inserted for `string` type on column `code`
297302
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1e5a47f8173bf402bd2d4b7aaa9f5857c92e8185"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297303
+  (30.1ms) commit transaction
297304
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
297305
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
297306
+  (0.1ms) begin transaction
297307
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 361]]
297308
+  (7.9ms) commit transaction
297309
+  (0.1ms) begin transaction
297310
+ Binary data inserted for `string` type on column `uuid`
297311
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "055aae38a1b49ec8a9affb36b6cd05ddf7e9ed98"], ["version", 1]]
297312
+ Binary data inserted for `string` type on column `code`
297313
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "055aae38a1b49ec8a9affb36b6cd05ddf7e9ed98"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297314
+  (7.9ms) commit transaction
297315
+  (0.1ms) begin transaction
297316
+ Binary data inserted for `string` type on column `uuid`
297317
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "055aae38a1b49ec8a9affb36b6cd05ddf7e9ed98"], ["version", 1]]
297318
+ SQL (0.3ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 122]]
297319
+  (8.3ms) commit transaction
297320
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
297321
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
297322
+  (0.1ms) begin transaction
297323
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 362]]
297324
+  (29.1ms) commit transaction
297325
+  (0.1ms) begin transaction
297326
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 363]]
297327
+  (8.6ms) commit transaction
297328
+  (0.1ms) begin transaction
297329
+ Binary data inserted for `string` type on column `uuid`
297330
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "4456fcb2214ee5f575f7b372de493bf5ab363061"], ["version", 1]]
297331
+ Binary data inserted for `string` type on column `code`
297332
+ SQL (0.4ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "4456fcb2214ee5f575f7b372de493bf5ab363061"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297333
+  (31.1ms) commit transaction
297334
+  (0.1ms) begin transaction
297335
+ Binary data inserted for `string` type on column `uuid`
297336
+ SQL (1.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "4456fcb2214ee5f575f7b372de493bf5ab363061"], ["version", 1]]
297337
+  (0.3ms) UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:12:11.490544' WHERE "cheeses"."id" = 123
297338
+  (26.1ms) commit transaction
297339
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
297340
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
297341
+  (0.1ms) begin transaction
297342
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 364]]
297343
+  (10.5ms) commit transaction
297344
+  (0.1ms) begin transaction
297345
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 365]]
297346
+  (18.6ms) commit transaction
297347
+  (0.1ms) begin transaction
297348
+ Binary data inserted for `string` type on column `uuid`
297349
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "a1f1ac2fc979f52c8404b822904c413a6cbd11e4"], ["version", 1]]
297350
+ Binary data inserted for `string` type on column `code`
297351
+ SQL (0.5ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a1f1ac2fc979f52c8404b822904c413a6cbd11e4"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297352
+  (17.8ms) commit transaction
297353
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
297354
+  (0.1ms) begin transaction
297355
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 366]]
297356
+  (10.9ms) commit transaction
297357
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
297358
+  (0.1ms) begin transaction
297359
+ Binary data inserted for `string` type on column `uuid`
297360
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "9f8ff072da2d5f571acb6054caac0bca6cacdc25"], ["version", 1]]
297361
+ Binary data inserted for `string` type on column `uuid`
297362
+ SQL (0.6ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "9f8ff072da2d5f571acb6054caac0bca6cacdc25"]]
297363
+  (8.7ms) commit transaction
297364
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
297365
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes"
297366
+  (0.1ms) begin transaction
297367
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 367]]
297368
+  (7.8ms) commit transaction
297369
+  (0.1ms) begin transaction
297370
+ Binary data inserted for `string` type on column `uuid`
297371
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3dee155d13e6a9f416ab3f181ef701bc9f91d65e"], ["version", 1]]
297372
+ Binary data inserted for `string` type on column `uuid`
297373
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3dee155d13e6a9f416ab3f181ef701bc9f91d65e"]]
297374
+  (8.2ms) commit transaction
297375
+  (0.1ms) begin transaction
297376
+ Binary data inserted for `string` type on column `uuid`
297377
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3dee155d13e6a9f416ab3f181ef701bc9f91d65e"], ["version", 1]]
297378
+ SQL (0.4ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 122]]
297379
+  (7.7ms) commit transaction
297380
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
297381
+ Traka::Change Load (0.3ms) SELECT "traka_changes".* FROM "traka_changes" 
297382
+  (0.1ms) begin transaction
297383
+ SQL (0.2ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 368]]
297384
+  (26.9ms) commit transaction
297385
+  (0.1ms) begin transaction
297386
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 369]]
297387
+  (23.3ms) commit transaction
297388
+  (0.1ms) begin transaction
297389
+ Binary data inserted for `string` type on column `uuid`
297390
+ SQL (0.7ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3887ab5bcbb32508efefb9c31326974edf015c32"], ["version", 1]]
297391
+ Binary data inserted for `string` type on column `uuid`
297392
+ SQL (0.4ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3887ab5bcbb32508efefb9c31326974edf015c32"]]
297393
+  (32.8ms) commit transaction
297394
+  (0.1ms) begin transaction
297395
+ Binary data inserted for `string` type on column `uuid`
297396
+ SQL (0.9ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3887ab5bcbb32508efefb9c31326974edf015c32"], ["version", 1]]
297397
+  (0.1ms) UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:12:11.779530' WHERE "products"."id" = 123
297398
+  (25.3ms) commit transaction
297399
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
297400
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297401
+  (0.0ms) begin transaction
297402
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 370]]
297403
+  (20.0ms) commit transaction
297404
+  (0.1ms) begin transaction
297405
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 371]]
297406
+  (7.5ms) commit transaction
297407
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
297408
+  (0.1ms) begin transaction
297409
+ Binary data inserted for `string` type on column `uuid`
297410
+ SQL (1.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "bc3f27ad9e32daf2517f7d716de17cb69377765b"], ["version", 1]]
297411
+ Binary data inserted for `string` type on column `uuid`
297412
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "bc3f27ad9e32daf2517f7d716de17cb69377765b"]]
297413
+  (30.7ms) commit transaction
297414
+  (0.2ms) begin transaction
297415
+ Traka::Change Load (0.4ms) SELECT "traka_changes".* FROM "traka_changes"
297416
+  (0.1ms) SAVEPOINT active_record_1
297417
+ SQL (0.3ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297418
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297419
+  (0.1ms) SAVEPOINT active_record_1
297420
+ Binary data inserted for `string` type on column `uuid`
297421
+ SQL (0.8ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "e826e98c64c0f8e6b9811d31208d7ade98652990"], ["version", 1]]
297422
+ Binary data inserted for `string` type on column `uuid`
297423
+ SQL (0.5ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "e826e98c64c0f8e6b9811d31208d7ade98652990"]]
297424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297425
+  (0.1ms) SAVEPOINT active_record_1
297426
+ Binary data inserted for `string` type on column `uuid`
297427
+ SQL (0.6ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "c78e7ceac2a1bf19ecfd92c0fa0fce6f9f3d27f8"], ["version", 1]]
297428
+ Binary data inserted for `string` type on column `code`
297429
+ SQL (0.6ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c78e7ceac2a1bf19ecfd92c0fa0fce6f9f3d27f8"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297430
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297431
+  (0.0ms) SAVEPOINT active_record_1
297432
+ Binary data inserted for `string` type on column `uuid`
297433
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "e826e98c64c0f8e6b9811d31208d7ade98652990"], ["version", 1]]
297434
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.900987' WHERE "products"."id" = 125
297435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297436
+  (0.0ms) SAVEPOINT active_record_1
297437
+ Binary data inserted for `string` type on column `uuid`
297438
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "e826e98c64c0f8e6b9811d31208d7ade98652990"], ["version", 1]]
297439
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.902636' WHERE "products"."id" = 125
297440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297441
+  (0.0ms) SAVEPOINT active_record_1
297442
+ Binary data inserted for `string` type on column `uuid`
297443
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "e826e98c64c0f8e6b9811d31208d7ade98652990"], ["version", 1]]
297444
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
297445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297446
+  (0.0ms) SAVEPOINT active_record_1
297447
+ Binary data inserted for `string` type on column `uuid`
297448
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "c78e7ceac2a1bf19ecfd92c0fa0fce6f9f3d27f8"], ["version", 1]]
297449
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 125]]
297450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297451
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
297452
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
297453
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
297454
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update'))
297455
+ Traka::Change Load (0.2ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))
297456
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))
297457
+  (0.1ms) rollback transaction
297458
+  (0.0ms) begin transaction
297459
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297460
+  (0.0ms) SAVEPOINT active_record_1
297461
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297463
+  (0.0ms) SAVEPOINT active_record_1
297464
+ Binary data inserted for `string` type on column `uuid`
297465
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "998a63a7280b5f53be7e458399d1c39c887683a5"], ["version", 1]]
297466
+ Binary data inserted for `string` type on column `uuid`
297467
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "998a63a7280b5f53be7e458399d1c39c887683a5"]]
297468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297469
+  (0.0ms) SAVEPOINT active_record_1
297470
+ Binary data inserted for `string` type on column `uuid`
297471
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "0afc0ee59abb9f50c342df27f6d6f6091b8dcbbb"], ["version", 1]]
297472
+ Binary data inserted for `string` type on column `code`
297473
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "0afc0ee59abb9f50c342df27f6d6f6091b8dcbbb"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297475
+  (0.0ms) SAVEPOINT active_record_1
297476
+ Binary data inserted for `string` type on column `uuid`
297477
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "998a63a7280b5f53be7e458399d1c39c887683a5"], ["version", 1]]
297478
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
297479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297480
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297481
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297482
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297483
+  (0.1ms) rollback transaction
297484
+  (0.0ms) begin transaction
297485
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297486
+  (0.0ms) SAVEPOINT active_record_1
297487
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297489
+  (0.0ms) SAVEPOINT active_record_1
297490
+ Binary data inserted for `string` type on column `uuid`
297491
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "baac174711b4e07e02af3943d5253ae618801205"], ["version", 1]]
297492
+ Binary data inserted for `string` type on column `uuid`
297493
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "baac174711b4e07e02af3943d5253ae618801205"]]
297494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297495
+  (0.0ms) SAVEPOINT active_record_1
297496
+ Binary data inserted for `string` type on column `uuid`
297497
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "e661f2180a1602f922a19c7d3150a698b0295888"], ["version", 1]]
297498
+ Binary data inserted for `string` type on column `code`
297499
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e661f2180a1602f922a19c7d3150a698b0295888"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297501
+  (0.0ms) SAVEPOINT active_record_1
297502
+ Binary data inserted for `string` type on column `uuid`
297503
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "baac174711b4e07e02af3943d5253ae618801205"], ["version", 1]]
297504
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.927123' WHERE "products"."id" = 125
297505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297506
+  (0.0ms) SAVEPOINT active_record_1
297507
+ Binary data inserted for `string` type on column `uuid`
297508
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "baac174711b4e07e02af3943d5253ae618801205"], ["version", 1]]
297509
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.929026' WHERE "products"."id" = 125
297510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297511
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297512
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297513
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297514
+  (0.1ms) rollback transaction
297515
+  (0.0ms) begin transaction
297516
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297517
+  (0.0ms) SAVEPOINT active_record_1
297518
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297520
+  (0.0ms) SAVEPOINT active_record_1
297521
+ Binary data inserted for `string` type on column `uuid`
297522
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3f75b9c8b4256a7efe2171c4765c27a11821f1ba"], ["version", 1]]
297523
+ Binary data inserted for `string` type on column `uuid`
297524
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3f75b9c8b4256a7efe2171c4765c27a11821f1ba"]]
297525
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297526
+  (0.0ms) SAVEPOINT active_record_1
297527
+ Binary data inserted for `string` type on column `uuid`
297528
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "eb2c5cdbd25cf560bc4a9840f1bd58ba980dacaa"], ["version", 1]]
297529
+ Binary data inserted for `string` type on column `code`
297530
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "eb2c5cdbd25cf560bc4a9840f1bd58ba980dacaa"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297532
+  (0.0ms) SAVEPOINT active_record_1
297533
+ Binary data inserted for `string` type on column `uuid`
297534
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3f75b9c8b4256a7efe2171c4765c27a11821f1ba"], ["version", 2]]
297535
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.938530' WHERE "products"."id" = 125
297536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297537
+  (0.0ms) SAVEPOINT active_record_1
297538
+ Binary data inserted for `string` type on column `uuid`
297539
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "eb2c5cdbd25cf560bc4a9840f1bd58ba980dacaa"], ["version", 2]]
297540
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.940237' WHERE "cheeses"."id" = 125
297541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297542
+  (0.0ms) SAVEPOINT active_record_1
297543
+ Binary data inserted for `string` type on column `uuid`
297544
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3f75b9c8b4256a7efe2171c4765c27a11821f1ba"], ["version", 2]]
297545
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
297546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297547
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297548
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297549
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297550
+  (0.1ms) rollback transaction
297551
+  (0.0ms) begin transaction
297552
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297553
+  (0.0ms) SAVEPOINT active_record_1
297554
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297556
+  (0.0ms) SAVEPOINT active_record_1
297557
+ Binary data inserted for `string` type on column `uuid`
297558
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "774b35b4a41144b93329048d7648d294d02af499"], ["version", 1]]
297559
+ Binary data inserted for `string` type on column `uuid`
297560
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "774b35b4a41144b93329048d7648d294d02af499"]]
297561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297562
+  (0.0ms) SAVEPOINT active_record_1
297563
+ Binary data inserted for `string` type on column `uuid`
297564
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "f29f57d7820d10de26517b88bb8504d34abd134f"], ["version", 1]]
297565
+ Binary data inserted for `string` type on column `code`
297566
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "f29f57d7820d10de26517b88bb8504d34abd134f"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297568
+  (0.0ms) SAVEPOINT active_record_1
297569
+ Binary data inserted for `string` type on column `uuid`
297570
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "774b35b4a41144b93329048d7648d294d02af499"], ["version", 2]]
297571
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.950251' WHERE "products"."id" = 125
297572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297573
+  (0.0ms) SAVEPOINT active_record_1
297574
+ Binary data inserted for `string` type on column `uuid`
297575
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "774b35b4a41144b93329048d7648d294d02af499"], ["version", 2]]
297576
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.951784' WHERE "products"."id" = 125
297577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297578
+  (0.0ms) SAVEPOINT active_record_1
297579
+ Binary data inserted for `string` type on column `uuid`
297580
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "774b35b4a41144b93329048d7648d294d02af499"], ["version", 2]]
297581
+  (0.1ms) UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-13 23:12:11.953245' WHERE "products"."id" = 125
297582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297583
+  (0.0ms) SAVEPOINT active_record_1
297584
+ Binary data inserted for `string` type on column `uuid`
297585
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "f29f57d7820d10de26517b88bb8504d34abd134f"], ["version", 2]]
297586
+  (0.1ms) UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.955014' WHERE "cheeses"."id" = 125
297587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297588
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297589
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297590
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297591
+  (0.1ms) rollback transaction
297592
+  (0.0ms) begin transaction
297593
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297594
+  (0.0ms) SAVEPOINT active_record_1
297595
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297597
+  (0.0ms) SAVEPOINT active_record_1
297598
+ Binary data inserted for `string` type on column `uuid`
297599
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "f1e73e5046547e32f030afc6bcff7311abeca808"], ["version", 1]]
297600
+ Binary data inserted for `string` type on column `uuid`
297601
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "f1e73e5046547e32f030afc6bcff7311abeca808"]]
297602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297603
+  (0.0ms) SAVEPOINT active_record_1
297604
+ Binary data inserted for `string` type on column `uuid`
297605
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "02c5bba358cf538d858bf31c20602f7f8b63f9c1"], ["version", 1]]
297606
+ Binary data inserted for `string` type on column `code`
297607
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "02c5bba358cf538d858bf31c20602f7f8b63f9c1"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297609
+  (0.0ms) SAVEPOINT active_record_1
297610
+ Binary data inserted for `string` type on column `uuid`
297611
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "f1e73e5046547e32f030afc6bcff7311abeca808"], ["version", 1]]
297612
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.965379' WHERE "products"."id" = 125
297613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297614
+  (0.0ms) SAVEPOINT active_record_1
297615
+ Binary data inserted for `string` type on column `uuid`
297616
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "f1e73e5046547e32f030afc6bcff7311abeca808"], ["version", 1]]
297617
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.966945' WHERE "products"."id" = 125
297618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297619
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
297620
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
297621
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
297622
+  (0.1ms) rollback transaction
297623
+  (0.1ms) begin transaction
297624
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297625
+  (0.0ms) SAVEPOINT active_record_1
297626
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297628
+  (0.0ms) SAVEPOINT active_record_1
297629
+ Binary data inserted for `string` type on column `uuid`
297630
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3c41bda3804f8764096f09cc9cfec9d2dca1872e"], ["version", 1]]
297631
+ Binary data inserted for `string` type on column `uuid`
297632
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3c41bda3804f8764096f09cc9cfec9d2dca1872e"]]
297633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297634
+  (0.0ms) SAVEPOINT active_record_1
297635
+ Binary data inserted for `string` type on column `uuid`
297636
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "d7829776cb7bb56a6b9c0aa634d5d0441bda28dd"], ["version", 1]]
297637
+ Binary data inserted for `string` type on column `code`
297638
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "d7829776cb7bb56a6b9c0aa634d5d0441bda28dd"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297640
+  (0.0ms) SAVEPOINT active_record_1
297641
+ Binary data inserted for `string` type on column `uuid`
297642
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "3c41bda3804f8764096f09cc9cfec9d2dca1872e"], ["version", 1]]
297643
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.975162' WHERE "products"."id" = 125
297644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297645
+  (0.0ms) SAVEPOINT active_record_1
297646
+ Binary data inserted for `string` type on column `uuid`
297647
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "d7829776cb7bb56a6b9c0aa634d5d0441bda28dd"], ["version", 1]]
297648
+  (0.1ms) UPDATE "cheeses" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.976772' WHERE "cheeses"."id" = 125
297649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297650
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
297651
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
297652
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
297653
+  (0.1ms) rollback transaction
297654
+  (0.0ms) begin transaction
297655
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297656
+  (0.0ms) SAVEPOINT active_record_1
297657
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297659
+  (0.0ms) SAVEPOINT active_record_1
297660
+ Binary data inserted for `string` type on column `uuid`
297661
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "56b5fc122a2c5ffb88307390617142c39dbd23dd"], ["version", 1]]
297662
+ Binary data inserted for `string` type on column `uuid`
297663
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "56b5fc122a2c5ffb88307390617142c39dbd23dd"]]
297664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297665
+  (0.0ms) SAVEPOINT active_record_1
297666
+ Binary data inserted for `string` type on column `uuid`
297667
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "ee9d7ab3920ce58c0c465114747935385a54d640"], ["version", 1]]
297668
+ Binary data inserted for `string` type on column `code`
297669
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "ee9d7ab3920ce58c0c465114747935385a54d640"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297670
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297671
+  (0.0ms) SAVEPOINT active_record_1
297672
+ Binary data inserted for `string` type on column `uuid`
297673
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "56b5fc122a2c5ffb88307390617142c39dbd23dd"], ["version", 1]]
297674
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.985040' WHERE "products"."id" = 125
297675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297676
+  (0.0ms) SAVEPOINT active_record_1
297677
+ Binary data inserted for `string` type on column `uuid`
297678
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "56b5fc122a2c5ffb88307390617142c39dbd23dd"], ["version", 1]]
297679
+  (0.1ms) UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.986794' WHERE "products"."id" = 125
297680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297681
+  (0.0ms) SAVEPOINT active_record_1
297682
+ Binary data inserted for `string` type on column `uuid`
297683
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "56b5fc122a2c5ffb88307390617142c39dbd23dd"], ["version", 1]]
297684
+ SQL (0.1ms) DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
297685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297686
+  (0.1ms) SAVEPOINT active_record_1
297687
+ Binary data inserted for `string` type on column `uuid`
297688
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "ee9d7ab3920ce58c0c465114747935385a54d640"], ["version", 1]]
297689
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 125]]
297690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297691
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297692
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297693
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297694
+  (0.1ms) rollback transaction
297695
+  (0.0ms) begin transaction
297696
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297697
+  (0.0ms) SAVEPOINT active_record_1
297698
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297700
+  (0.0ms) SAVEPOINT active_record_1
297701
+ Binary data inserted for `string` type on column `uuid`
297702
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "7bde2c70ad3e776675e4ac3f11af3caae4080fb7"], ["version", 1]]
297703
+ Binary data inserted for `string` type on column `uuid`
297704
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "7bde2c70ad3e776675e4ac3f11af3caae4080fb7"]]
297705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297706
+  (0.0ms) SAVEPOINT active_record_1
297707
+ Binary data inserted for `string` type on column `uuid`
297708
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "77bef8b4d306e38b4296b6cf8b2ad735601def80"], ["version", 1]]
297709
+ Binary data inserted for `string` type on column `code`
297710
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "77bef8b4d306e38b4296b6cf8b2ad735601def80"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00]]
297711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297712
+  (0.1ms) rollback transaction
297713
+  (0.0ms) begin transaction
297714
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297715
+  (0.0ms) SAVEPOINT active_record_1
297716
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297718
+  (0.0ms) SAVEPOINT active_record_1
297719
+ Binary data inserted for `string` type on column `uuid`
297720
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:11 UTC +00:00], ["uuid", "fe66753e20db6b3caada769b897d650d2ded0444"], ["version", 1]]
297721
+ Binary data inserted for `string` type on column `uuid`
297722
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "fe66753e20db6b3caada769b897d650d2ded0444"]]
297723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297724
+  (0.0ms) SAVEPOINT active_record_1
297725
+ Binary data inserted for `string` type on column `uuid`
297726
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "46ab749915b0d1f066afeca0c5da0c1c5d93f288"], ["version", 1]]
297727
+ Binary data inserted for `string` type on column `code`
297728
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "46ab749915b0d1f066afeca0c5da0c1c5d93f288"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297730
+  (0.1ms) rollback transaction
297731
+  (0.0ms) begin transaction
297732
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297733
+  (0.0ms) SAVEPOINT active_record_1
297734
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297736
+  (0.0ms) SAVEPOINT active_record_1
297737
+ Binary data inserted for `string` type on column `uuid`
297738
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "3507ffdb4e1ace81a5c5316ea993ecf85782e9d3"], ["version", 1]]
297739
+ Binary data inserted for `string` type on column `uuid`
297740
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "3507ffdb4e1ace81a5c5316ea993ecf85782e9d3"]]
297741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297742
+  (0.0ms) SAVEPOINT active_record_1
297743
+ Binary data inserted for `string` type on column `uuid`
297744
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "8e509e597ced2440f69d8d0b60eb0f670fa6e99c"], ["version", 1]]
297745
+ Binary data inserted for `string` type on column `code`
297746
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8e509e597ced2440f69d8d0b60eb0f670fa6e99c"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297748
+  (0.1ms) rollback transaction
297749
+  (0.0ms) begin transaction
297750
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297751
+  (0.0ms) SAVEPOINT active_record_1
297752
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297754
+  (0.0ms) SAVEPOINT active_record_1
297755
+ Binary data inserted for `string` type on column `uuid`
297756
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "0e37edaf68dcb1dd55bce80afb9acd46fac71d8e"], ["version", 1]]
297757
+ Binary data inserted for `string` type on column `uuid`
297758
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "0e37edaf68dcb1dd55bce80afb9acd46fac71d8e"]]
297759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297760
+  (0.0ms) SAVEPOINT active_record_1
297761
+ Binary data inserted for `string` type on column `uuid`
297762
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "f700990a042c051623ac2cc025bf6fbea770c6fe"], ["version", 1]]
297763
+ Binary data inserted for `string` type on column `code`
297764
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "f700990a042c051623ac2cc025bf6fbea770c6fe"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297766
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297767
+  (0.0ms) SAVEPOINT active_record_1
297768
+ Binary data inserted for `string` type on column `uuid`
297769
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "13f847b846f7151c188dbac2c3a7b3c4c53ce18b"], ["version", 2]]
297770
+ Binary data inserted for `string` type on column `uuid`
297771
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "13f847b846f7151c188dbac2c3a7b3c4c53ce18b"]]
297772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297773
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297774
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297775
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
297776
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
297777
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
297778
+  (0.1ms) rollback transaction
297779
+  (0.0ms) begin transaction
297780
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297781
+  (0.0ms) SAVEPOINT active_record_1
297782
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297784
+  (0.0ms) SAVEPOINT active_record_1
297785
+ Binary data inserted for `string` type on column `uuid`
297786
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "c1a6dbc17aa3fbbfddfe4796d4ef45115069fd22"], ["version", 1]]
297787
+ Binary data inserted for `string` type on column `uuid`
297788
+ SQL (0.2ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "c1a6dbc17aa3fbbfddfe4796d4ef45115069fd22"]]
297789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297790
+  (0.0ms) SAVEPOINT active_record_1
297791
+ Binary data inserted for `string` type on column `uuid`
297792
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "c013109b1d4892b2858025c377beb424740c0c5e"], ["version", 1]]
297793
+ Binary data inserted for `string` type on column `code`
297794
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c013109b1d4892b2858025c377beb424740c0c5e"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297796
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297797
+  (0.0ms) SAVEPOINT active_record_1
297798
+ Binary data inserted for `string` type on column `uuid`
297799
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "22b46b45b7bcd452c8f14aa87b5c60e774639e75"], ["version", 2]]
297800
+ Binary data inserted for `string` type on column `uuid`
297801
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "22b46b45b7bcd452c8f14aa87b5c60e774639e75"]]
297802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297803
+  (0.0ms) SAVEPOINT active_record_1
297804
+ Binary data inserted for `string` type on column `uuid`
297805
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "e3ede28f1a80295cadcf705f78226d46b6548f72"], ["version", 3]]
297806
+ Binary data inserted for `string` type on column `uuid`
297807
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product C"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "e3ede28f1a80295cadcf705f78226d46b6548f72"]]
297808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297809
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))
297810
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))
297811
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
297812
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
297813
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
297814
+  (0.1ms) rollback transaction
297815
+  (0.0ms) begin transaction
297816
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297817
+  (0.0ms) SAVEPOINT active_record_1
297818
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297820
+  (0.0ms) SAVEPOINT active_record_1
297821
+ Binary data inserted for `string` type on column `uuid`
297822
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "c9a0bff9b6b17ecf528f0fb441c099833aecac4b"], ["version", 1]]
297823
+ Binary data inserted for `string` type on column `uuid`
297824
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "c9a0bff9b6b17ecf528f0fb441c099833aecac4b"]]
297825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297826
+  (0.0ms) SAVEPOINT active_record_1
297827
+ Binary data inserted for `string` type on column `uuid`
297828
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "2c5fcf108ee541c1bde2b6ab3f99aabad8eb68b0"], ["version", 1]]
297829
+ Binary data inserted for `string` type on column `code`
297830
+ SQL (0.1ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "2c5fcf108ee541c1bde2b6ab3f99aabad8eb68b0"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297832
+  (0.0ms) SAVEPOINT active_record_1
297833
+ Binary data inserted for `string` type on column `uuid`
297834
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "c9a0bff9b6b17ecf528f0fb441c099833aecac4b"], ["version", 2]]
297835
+  (0.1ms) UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:12.038596' WHERE "products"."id" = 125
297836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297837
+  (0.0ms) SAVEPOINT active_record_1
297838
+ Binary data inserted for `string` type on column `uuid`
297839
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "2c5fcf108ee541c1bde2b6ab3f99aabad8eb68b0"], ["version", 2]]
297840
+ SQL (0.1ms) DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 125]]
297841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297842
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297843
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297844
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297845
+  (0.1ms) rollback transaction
297846
+  (0.0ms) begin transaction
297847
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes"
297848
+  (0.0ms) SAVEPOINT active_record_1
297849
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297851
+  (0.0ms) SAVEPOINT active_record_1
297852
+ Binary data inserted for `string` type on column `uuid`
297853
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "494bb41a0cf7cd26be12c1c8e8efd7026982eb5a"], ["version", 1]]
297854
+ Binary data inserted for `string` type on column `uuid`
297855
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "494bb41a0cf7cd26be12c1c8e8efd7026982eb5a"]]
297856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297857
+  (2.5ms) SAVEPOINT active_record_1
297858
+ Binary data inserted for `string` type on column `uuid`
297859
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "4c3aff8881a13c6d9ec42686913360af21ce315d"], ["version", 1]]
297860
+ Binary data inserted for `string` type on column `code`
297861
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "4c3aff8881a13c6d9ec42686913360af21ce315d"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297863
+  (0.0ms) SAVEPOINT active_record_1
297864
+ Binary data inserted for `string` type on column `uuid`
297865
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "2cf73fd095c19bbfc4a2dde5514aba8cd116700b"], ["version", 2]]
297866
+ Binary data inserted for `string` type on column `uuid`
297867
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product B"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "2cf73fd095c19bbfc4a2dde5514aba8cd116700b"]]
297868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297869
+  (0.0ms) SAVEPOINT active_record_1
297870
+ Binary data inserted for `string` type on column `uuid`
297871
+ SQL (0.2ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "1d0c315a161845d4ec4ca9645ca2c6474eafbea7"], ["version", 2]]
297872
+ Binary data inserted for `string` type on column `code`
297873
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1d0c315a161845d4ec4ca9645ca2c6474eafbea7"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese B"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297875
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297876
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297877
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
297878
+  (0.1ms) rollback transaction
297879
+  (0.0ms) begin transaction
297880
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297881
+  (0.0ms) SAVEPOINT active_record_1
297882
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297884
+  (0.1ms) rollback transaction
297885
+  (0.0ms) begin transaction
297886
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297887
+  (0.0ms) SAVEPOINT active_record_1
297888
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297890
+  (0.0ms) SAVEPOINT active_record_1
297891
+ Binary data inserted for `string` type on column `uuid`
297892
+ SQL (0.3ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Product"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "b9cd30172c2767a47c240bf252668945b4733b27"], ["version", 1]]
297893
+ Binary data inserted for `string` type on column `uuid`
297894
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Product A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "b9cd30172c2767a47c240bf252668945b4733b27"]]
297895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
297896
+  (0.0ms) SAVEPOINT active_record_1
297897
+ Binary data inserted for `string` type on column `uuid`
297898
+ SQL (0.1ms) INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["uuid", "411167c8f6edbc47c1ed8db8dc35eeb134e97e52"], ["version", 1]]
297899
+ Binary data inserted for `string` type on column `code`
297900
+ SQL (0.2ms) INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "411167c8f6edbc47c1ed8db8dc35eeb134e97e52"], ["created_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Mon, 13 Jan 2014 23:12:12 UTC +00:00]]
297901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297902
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297903
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."uuid" = 'b9cd30172c2767a47c240bf252668945b4733b27' LIMIT 1
297904
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
297905
+ Cheese Load (0.1ms) SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = '411167c8f6edbc47c1ed8db8dc35eeb134e97e52' LIMIT 1
297906
+  (0.1ms) rollback transaction
297907
+  (0.0ms) begin transaction
297908
+ Traka::Change Load (0.1ms) SELECT "traka_changes".* FROM "traka_changes" 
297909
+  (0.0ms) SAVEPOINT active_record_1
297910
+ SQL (0.1ms) DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
297911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
297912
+  (0.1ms) rollback transaction
297913
+  (0.0ms) begin transaction
297914
+  (0.0ms) rollback transaction