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 +5 -5
- data/lib/traka/change.rb +8 -0
- data/lib/traka/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +1190 -0
- data/test/traka_change_test.rb +21 -0
- metadata +2 -2
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 #=>
|
111
|
+
Traka::Change.latest_version #=> 0
|
112
112
|
Traka::Change.publish_new_version!
|
113
|
-
Traka::Change.latest_version #=>
|
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 #=>
|
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 #=>
|
136
|
+
Traka::Change.latest_version #=> 1
|
137
137
|
|
138
138
|
b.destroy
|
139
139
|
a.name = "New name"
|
data/lib/traka/change.rb
CHANGED
@@ -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",
|
data/lib/traka/version.rb
CHANGED
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/test/dummy/log/test.log
CHANGED
@@ -296722,3 +296722,1193 @@ Binary data inserted for `string` type on column `code`
|
|
296722
296722
|
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
296723
296723
|
[1m[35m (0.0ms)[0m begin transaction
|
296724
296724
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
296725
|
+
Connecting to database specified by database.yml
|
296726
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296727
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296728
|
+
[1m[36mSQL (3.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 348]]
|
296729
|
+
[1m[35m (87.1ms)[0m commit transaction
|
296730
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296731
|
+
Binary data inserted for `string` type on column `uuid`
|
296732
|
+
[1m[35mSQL (2.6ms)[0m 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
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (60.1ms)[0m commit transaction
|
296736
|
+
[1m[36mTraka::Change Load (0.5ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
296737
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296739
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 349]]
|
296740
|
+
[1m[36m (22.5ms)[0m [1mcommit transaction[0m
|
296741
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296742
|
+
Binary data inserted for `string` type on column `uuid`
|
296743
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (57.1ms)[0m [1mcommit transaction[0m
|
296747
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296748
|
+
Binary data inserted for `string` type on column `uuid`
|
296749
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 118]]
|
296751
|
+
[1m[36m (45.1ms)[0m [1mcommit transaction[0m
|
296752
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
296753
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296754
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296755
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 350]]
|
296756
|
+
[1m[35m (15.7ms)[0m commit transaction
|
296757
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296758
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 351]]
|
296759
|
+
[1m[36m (11.0ms)[0m [1mcommit transaction[0m
|
296760
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296761
|
+
Binary data inserted for `string` type on column `uuid`
|
296762
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (29.5ms)[0m [1mcommit transaction[0m
|
296766
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296767
|
+
Binary data inserted for `string` type on column `uuid`
|
296768
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:09:06.327032' WHERE "cheeses"."id" = 119
|
296770
|
+
[1m[36m (17.4ms)[0m [1mcommit transaction[0m
|
296771
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
296772
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296773
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296774
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 352]]
|
296775
|
+
[1m[35m (8.7ms)[0m commit transaction
|
296776
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296777
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 353]]
|
296778
|
+
[1m[36m (7.6ms)[0m [1mcommit transaction[0m
|
296779
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296780
|
+
Binary data inserted for `string` type on column `uuid`
|
296781
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (8.4ms)[0m [1mcommit transaction[0m
|
296785
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296786
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296787
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 354]]
|
296788
|
+
[1m[36m (31.8ms)[0m [1mcommit transaction[0m
|
296789
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296790
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296791
|
+
Binary data inserted for `string` type on column `uuid`
|
296792
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (8.8ms)[0m commit transaction
|
296796
|
+
[1m[36mTraka::Change Load (0.2ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
296797
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296798
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296799
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 355]]
|
296800
|
+
[1m[36m (122.3ms)[0m [1mcommit transaction[0m
|
296801
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296802
|
+
Binary data inserted for `string` type on column `uuid`
|
296803
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (28.6ms)[0m [1mcommit transaction[0m
|
296807
|
+
[1m[35m (0.2ms)[0m begin transaction
|
296808
|
+
Binary data inserted for `string` type on column `uuid`
|
296809
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 118]]
|
296811
|
+
[1m[36m (10.6ms)[0m [1mcommit transaction[0m
|
296812
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
296813
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296814
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296815
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 356]]
|
296816
|
+
[1m[35m (16.0ms)[0m commit transaction
|
296817
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296818
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 357]]
|
296819
|
+
[1m[36m (7.8ms)[0m [1mcommit transaction[0m
|
296820
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296821
|
+
Binary data inserted for `string` type on column `uuid`
|
296822
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (8.4ms)[0m [1mcommit transaction[0m
|
296826
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296827
|
+
Binary data inserted for `string` type on column `uuid`
|
296828
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:09:06.681441' WHERE "products"."id" = 119
|
296830
|
+
[1m[36m (6.5ms)[0m [1mcommit transaction[0m
|
296831
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
296832
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296833
|
+
[1m[35m (0.1ms)[0m begin transaction
|
296834
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 358]]
|
296835
|
+
[1m[35m (7.8ms)[0m commit transaction
|
296836
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296837
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 359]]
|
296838
|
+
[1m[36m (8.5ms)[0m [1mcommit transaction[0m
|
296839
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296840
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296841
|
+
Binary data inserted for `string` type on column `uuid`
|
296842
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (43.0ms)[0m commit transaction
|
296846
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
296847
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296848
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
296849
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
|
296850
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296851
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
296852
|
+
Binary data inserted for `string` type on column `uuid`
|
296853
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296857
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296858
|
+
Binary data inserted for `string` type on column `uuid`
|
296859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296864
|
+
Binary data inserted for `string` type on column `uuid`
|
296865
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.780477' WHERE "products"."id" = 121
|
296867
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296868
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296869
|
+
Binary data inserted for `string` type on column `uuid`
|
296870
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.782094' WHERE "products"."id" = 121
|
296872
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296873
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296874
|
+
Binary data inserted for `string` type on column `uuid`
|
296875
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
|
296877
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296878
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296879
|
+
Binary data inserted for `string` type on column `uuid`
|
296880
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 121]]
|
296882
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296883
|
+
[1m[35mTraka::Change Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
|
296884
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))[0m
|
296885
|
+
[1m[35mTraka::Change Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
|
296886
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update'))[0m
|
296887
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))
|
296888
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))[0m
|
296889
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
296890
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
296891
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296892
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296893
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
|
296894
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296895
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296896
|
+
Binary data inserted for `string` type on column `uuid`
|
296897
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296901
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296902
|
+
Binary data inserted for `string` type on column `uuid`
|
296903
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296907
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296908
|
+
Binary data inserted for `string` type on column `uuid`
|
296909
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
|
296911
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296912
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
296913
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
296914
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
296915
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
296916
|
+
[1m[35m (0.0ms)[0m begin transaction
|
296917
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296918
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296919
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
296920
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296921
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296922
|
+
Binary data inserted for `string` type on column `uuid`
|
296923
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296927
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296928
|
+
Binary data inserted for `string` type on column `uuid`
|
296929
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296933
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296934
|
+
Binary data inserted for `string` type on column `uuid`
|
296935
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.806958' WHERE "products"."id" = 121[0m
|
296937
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296938
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296939
|
+
Binary data inserted for `string` type on column `uuid`
|
296940
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.808544' WHERE "products"."id" = 121[0m
|
296942
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296943
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
296944
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
296945
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
296946
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
296947
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
296948
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
296949
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296950
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
|
296951
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296952
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296953
|
+
Binary data inserted for `string` type on column `uuid`
|
296954
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296958
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296959
|
+
Binary data inserted for `string` type on column `uuid`
|
296960
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296964
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296965
|
+
Binary data inserted for `string` type on column `uuid`
|
296966
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.817022' WHERE "products"."id" = 121
|
296968
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296969
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296970
|
+
Binary data inserted for `string` type on column `uuid`
|
296971
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.818558' WHERE "cheeses"."id" = 121
|
296973
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296974
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296975
|
+
Binary data inserted for `string` type on column `uuid`
|
296976
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
|
296978
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
296979
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
296980
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
296981
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
296982
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
296983
|
+
[1m[35m (0.0ms)[0m begin transaction
|
296984
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
296985
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
296986
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
296987
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296988
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296989
|
+
Binary data inserted for `string` type on column `uuid`
|
296990
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
296995
|
+
Binary data inserted for `string` type on column `uuid`
|
296996
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297000
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297001
|
+
Binary data inserted for `string` type on column `uuid`
|
297002
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.829395' WHERE "products"."id" = 121[0m
|
297004
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297005
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297006
|
+
Binary data inserted for `string` type on column `uuid`
|
297007
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.831098' WHERE "products"."id" = 121[0m
|
297009
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297010
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297011
|
+
Binary data inserted for `string` type on column `uuid`
|
297012
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-13 23:09:06.832827' WHERE "products"."id" = 121[0m
|
297014
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297015
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297016
|
+
Binary data inserted for `string` type on column `uuid`
|
297017
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.834484' WHERE "cheeses"."id" = 121[0m
|
297019
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297020
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297021
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297022
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297023
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297024
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297025
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297026
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297027
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
|
297028
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297029
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297030
|
+
Binary data inserted for `string` type on column `uuid`
|
297031
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297035
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297036
|
+
Binary data inserted for `string` type on column `uuid`
|
297037
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297041
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297042
|
+
Binary data inserted for `string` type on column `uuid`
|
297043
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.843535' WHERE "products"."id" = 121
|
297045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297046
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297047
|
+
Binary data inserted for `string` type on column `uuid`
|
297048
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.845052' WHERE "products"."id" = 121
|
297050
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297051
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
|
297052
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))[0m
|
297053
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
|
297054
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297055
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297056
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297057
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297058
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297059
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297060
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297061
|
+
Binary data inserted for `string` type on column `uuid`
|
297062
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297066
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297067
|
+
Binary data inserted for `string` type on column `uuid`
|
297068
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297073
|
+
Binary data inserted for `string` type on column `uuid`
|
297074
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.853217' WHERE "products"."id" = 121[0m
|
297076
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297077
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297078
|
+
Binary data inserted for `string` type on column `uuid`
|
297079
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.854721' WHERE "cheeses"."id" = 121[0m
|
297081
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297082
|
+
[1m[36mTraka::Change Load (0.2ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))[0m
|
297083
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
|
297084
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))[0m
|
297085
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297086
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297087
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297088
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297089
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
|
297090
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297091
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297092
|
+
Binary data inserted for `string` type on column `uuid`
|
297093
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297097
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297098
|
+
Binary data inserted for `string` type on column `uuid`
|
297099
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297103
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297104
|
+
Binary data inserted for `string` type on column `uuid`
|
297105
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.864044' WHERE "products"."id" = 121
|
297107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297108
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297109
|
+
Binary data inserted for `string` type on column `uuid`
|
297110
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:09:06.865744' WHERE "products"."id" = 121
|
297112
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297113
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297114
|
+
Binary data inserted for `string` type on column `uuid`
|
297115
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 121]]
|
297117
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297118
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
297119
|
+
Binary data inserted for `string` type on column `uuid`
|
297120
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 121]]
|
297122
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297123
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297124
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297125
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297126
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297127
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297128
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297129
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297130
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297131
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297132
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297133
|
+
Binary data inserted for `string` type on column `uuid`
|
297134
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297138
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297139
|
+
Binary data inserted for `string` type on column `uuid`
|
297140
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297144
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297145
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297146
|
+
Binary data inserted for `string` type on column `uuid`
|
297147
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297151
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297152
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297153
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
|
297154
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))[0m
|
297155
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
|
297156
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297157
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297158
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297160
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297161
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297162
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297163
|
+
Binary data inserted for `string` type on column `uuid`
|
297164
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297169
|
+
Binary data inserted for `string` type on column `uuid`
|
297170
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297174
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297175
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297176
|
+
Binary data inserted for `string` type on column `uuid`
|
297177
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297181
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297182
|
+
Binary data inserted for `string` type on column `uuid`
|
297183
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297187
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))
|
297188
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))[0m
|
297189
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
|
297190
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))[0m
|
297191
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
|
297192
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297193
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297194
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297195
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297196
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297197
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297198
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297199
|
+
Binary data inserted for `string` type on column `uuid`
|
297200
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297204
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297205
|
+
Binary data inserted for `string` type on column `uuid`
|
297206
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297210
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297211
|
+
Binary data inserted for `string` type on column `uuid`
|
297212
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:09:06.900976' WHERE "products"."id" = 121[0m
|
297214
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297215
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297216
|
+
Binary data inserted for `string` type on column `uuid`
|
297217
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 121]]
|
297219
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297220
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297221
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297222
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297223
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297224
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297225
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297226
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297227
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 360]]
|
297228
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297229
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297230
|
+
Binary data inserted for `string` type on column `uuid`
|
297231
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297236
|
+
Binary data inserted for `string` type on column `uuid`
|
297237
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297241
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297242
|
+
Binary data inserted for `string` type on column `uuid`
|
297243
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297247
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297248
|
+
Binary data inserted for `string` type on column `uuid`
|
297249
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297253
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297254
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297255
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297256
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297257
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297258
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297259
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297260
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297261
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297262
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
297263
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297264
|
+
[1m[36mTraka::Change Load (0.2ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
297266
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297267
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
297268
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
297269
|
+
Binary data inserted for `string` type on column `uuid`
|
297270
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
297274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297275
|
+
Binary data inserted for `string` type on column `uuid`
|
297276
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297280
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297281
|
+
[1m[35mProduct Load (0.2ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = 'fb70c3ddeb838a50108dbbdeb857273a27fbaff1' LIMIT 1
|
297282
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297283
|
+
[1m[35mCheese Load (0.1ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = '8b9a2cf35397bbfa29597e02c515674120bf0709' LIMIT 1
|
297284
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297285
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297286
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297287
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297288
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297289
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297290
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297291
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297292
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
297293
|
+
Connecting to database specified by database.yml
|
297294
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297295
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297296
|
+
[1m[36mSQL (2.8ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 360]]
|
297297
|
+
[1m[35m (16.1ms)[0m commit transaction
|
297298
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297299
|
+
Binary data inserted for `string` type on column `uuid`
|
297300
|
+
[1m[35mSQL (1.0ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (30.1ms)[0m commit transaction
|
297304
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
297305
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297306
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297307
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 361]]
|
297308
|
+
[1m[36m (7.9ms)[0m [1mcommit transaction[0m
|
297309
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297310
|
+
Binary data inserted for `string` type on column `uuid`
|
297311
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (7.9ms)[0m [1mcommit transaction[0m
|
297315
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297316
|
+
Binary data inserted for `string` type on column `uuid`
|
297317
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 122]]
|
297319
|
+
[1m[36m (8.3ms)[0m [1mcommit transaction[0m
|
297320
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
297321
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297322
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297323
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 362]]
|
297324
|
+
[1m[35m (29.1ms)[0m commit transaction
|
297325
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297326
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 363]]
|
297327
|
+
[1m[36m (8.6ms)[0m [1mcommit transaction[0m
|
297328
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297329
|
+
Binary data inserted for `string` type on column `uuid`
|
297330
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (31.1ms)[0m [1mcommit transaction[0m
|
297334
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297335
|
+
Binary data inserted for `string` type on column `uuid`
|
297336
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.3ms)[0m UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:12:11.490544' WHERE "cheeses"."id" = 123
|
297338
|
+
[1m[36m (26.1ms)[0m [1mcommit transaction[0m
|
297339
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
297340
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297341
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297342
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 364]]
|
297343
|
+
[1m[35m (10.5ms)[0m commit transaction
|
297344
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297345
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 365]]
|
297346
|
+
[1m[36m (18.6ms)[0m [1mcommit transaction[0m
|
297347
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297348
|
+
Binary data inserted for `string` type on column `uuid`
|
297349
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (17.8ms)[0m [1mcommit transaction[0m
|
297353
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297354
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297355
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 366]]
|
297356
|
+
[1m[36m (10.9ms)[0m [1mcommit transaction[0m
|
297357
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297359
|
+
Binary data inserted for `string` type on column `uuid`
|
297360
|
+
[1m[35mSQL (0.9ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (8.7ms)[0m commit transaction
|
297364
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
297365
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297367
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 367]]
|
297368
|
+
[1m[36m (7.8ms)[0m [1mcommit transaction[0m
|
297369
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297370
|
+
Binary data inserted for `string` type on column `uuid`
|
297371
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (8.2ms)[0m [1mcommit transaction[0m
|
297375
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297376
|
+
Binary data inserted for `string` type on column `uuid`
|
297377
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 122]]
|
297379
|
+
[1m[36m (7.7ms)[0m [1mcommit transaction[0m
|
297380
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
297381
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297382
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297383
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 368]]
|
297384
|
+
[1m[35m (26.9ms)[0m commit transaction
|
297385
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297386
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 369]]
|
297387
|
+
[1m[36m (23.3ms)[0m [1mcommit transaction[0m
|
297388
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297389
|
+
Binary data inserted for `string` type on column `uuid`
|
297390
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (32.8ms)[0m [1mcommit transaction[0m
|
297394
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297395
|
+
Binary data inserted for `string` type on column `uuid`
|
297396
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-13 23:12:11.779530' WHERE "products"."id" = 123
|
297398
|
+
[1m[36m (25.3ms)[0m [1mcommit transaction[0m
|
297399
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
297400
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297401
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297402
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 370]]
|
297403
|
+
[1m[35m (20.0ms)[0m commit transaction
|
297404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297405
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 371]]
|
297406
|
+
[1m[36m (7.5ms)[0m [1mcommit transaction[0m
|
297407
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
297409
|
+
Binary data inserted for `string` type on column `uuid`
|
297410
|
+
[1m[35mSQL (1.2ms)[0m 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
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (30.7ms)[0m commit transaction
|
297414
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
297415
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297416
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
297417
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
|
297418
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297419
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
297420
|
+
Binary data inserted for `string` type on column `uuid`
|
297421
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
297426
|
+
Binary data inserted for `string` type on column `uuid`
|
297427
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297431
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297432
|
+
Binary data inserted for `string` type on column `uuid`
|
297433
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.900987' WHERE "products"."id" = 125
|
297435
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297436
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297437
|
+
Binary data inserted for `string` type on column `uuid`
|
297438
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.902636' WHERE "products"."id" = 125
|
297440
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297442
|
+
Binary data inserted for `string` type on column `uuid`
|
297443
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
|
297445
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297446
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297447
|
+
Binary data inserted for `string` type on column `uuid`
|
297448
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 125]]
|
297450
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297451
|
+
[1m[35mTraka::Change Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
|
297452
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))[0m
|
297453
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create')) AND (klass in ('Product','Cheese'))
|
297454
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update'))[0m
|
297455
|
+
[1m[35mTraka::Change Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))
|
297456
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create','update')) AND (klass in ('Product','Cheese'))[0m
|
297457
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297458
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297459
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297460
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297461
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
|
297462
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297463
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297464
|
+
Binary data inserted for `string` type on column `uuid`
|
297465
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297469
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297470
|
+
Binary data inserted for `string` type on column `uuid`
|
297471
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297475
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297476
|
+
Binary data inserted for `string` type on column `uuid`
|
297477
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
|
297479
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297480
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297481
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297482
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297483
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297484
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297485
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297486
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297487
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297488
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297489
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297490
|
+
Binary data inserted for `string` type on column `uuid`
|
297491
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297496
|
+
Binary data inserted for `string` type on column `uuid`
|
297497
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297501
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297502
|
+
Binary data inserted for `string` type on column `uuid`
|
297503
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.927123' WHERE "products"."id" = 125[0m
|
297505
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297506
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297507
|
+
Binary data inserted for `string` type on column `uuid`
|
297508
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.929026' WHERE "products"."id" = 125[0m
|
297510
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297511
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297512
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297513
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297514
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297516
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297517
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297518
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
|
297519
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297520
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297521
|
+
Binary data inserted for `string` type on column `uuid`
|
297522
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297526
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297527
|
+
Binary data inserted for `string` type on column `uuid`
|
297528
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297532
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297533
|
+
Binary data inserted for `string` type on column `uuid`
|
297534
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.938530' WHERE "products"."id" = 125
|
297536
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297537
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297538
|
+
Binary data inserted for `string` type on column `uuid`
|
297539
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.940237' WHERE "cheeses"."id" = 125
|
297541
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297542
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297543
|
+
Binary data inserted for `string` type on column `uuid`
|
297544
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
|
297546
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297547
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297548
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297549
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297550
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297551
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297552
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297553
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297554
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297555
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297556
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297557
|
+
Binary data inserted for `string` type on column `uuid`
|
297558
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297562
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297563
|
+
Binary data inserted for `string` type on column `uuid`
|
297564
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297568
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297569
|
+
Binary data inserted for `string` type on column `uuid`
|
297570
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.950251' WHERE "products"."id" = 125[0m
|
297572
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297573
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297574
|
+
Binary data inserted for `string` type on column `uuid`
|
297575
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.951784' WHERE "products"."id" = 125[0m
|
297577
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297579
|
+
Binary data inserted for `string` type on column `uuid`
|
297580
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-13 23:12:11.953245' WHERE "products"."id" = 125[0m
|
297582
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297583
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297584
|
+
Binary data inserted for `string` type on column `uuid`
|
297585
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.955014' WHERE "cheeses"."id" = 125[0m
|
297587
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297588
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297589
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297590
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297591
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297592
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297593
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297594
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297595
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
|
297596
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297597
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297598
|
+
Binary data inserted for `string` type on column `uuid`
|
297599
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297603
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297604
|
+
Binary data inserted for `string` type on column `uuid`
|
297605
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297609
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297610
|
+
Binary data inserted for `string` type on column `uuid`
|
297611
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.965379' WHERE "products"."id" = 125
|
297613
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297614
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297615
|
+
Binary data inserted for `string` type on column `uuid`
|
297616
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.966945' WHERE "products"."id" = 125
|
297618
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297619
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
|
297620
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))[0m
|
297621
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (action_type in ('create'))
|
297622
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297623
|
+
[1m[35m (0.1ms)[0m begin transaction
|
297624
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297625
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297626
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297627
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297628
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297629
|
+
Binary data inserted for `string` type on column `uuid`
|
297630
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297634
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297635
|
+
Binary data inserted for `string` type on column `uuid`
|
297636
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297640
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297641
|
+
Binary data inserted for `string` type on column `uuid`
|
297642
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.975162' WHERE "products"."id" = 125[0m
|
297644
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297645
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297646
|
+
Binary data inserted for `string` type on column `uuid`
|
297647
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.976772' WHERE "cheeses"."id" = 125[0m
|
297649
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297650
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))[0m
|
297651
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))
|
297652
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1)) AND (klass in ('Product'))[0m
|
297653
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297654
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297655
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297656
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297657
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
|
297658
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297660
|
+
Binary data inserted for `string` type on column `uuid`
|
297661
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297665
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297666
|
+
Binary data inserted for `string` type on column `uuid`
|
297667
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297671
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297672
|
+
Binary data inserted for `string` type on column `uuid`
|
297673
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:11.985040' WHERE "products"."id" = 125
|
297675
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297676
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297677
|
+
Binary data inserted for `string` type on column `uuid`
|
297678
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-13 23:12:11.986794' WHERE "products"."id" = 125
|
297680
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297681
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297682
|
+
Binary data inserted for `string` type on column `uuid`
|
297683
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 125]]
|
297685
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297686
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
297687
|
+
Binary data inserted for `string` type on column `uuid`
|
297688
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 125]]
|
297690
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297691
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297692
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297693
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))
|
297694
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297695
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297696
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297697
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297698
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297699
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297700
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297701
|
+
Binary data inserted for `string` type on column `uuid`
|
297702
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297706
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297707
|
+
Binary data inserted for `string` type on column `uuid`
|
297708
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297712
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297713
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297714
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297716
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297717
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297718
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297719
|
+
Binary data inserted for `string` type on column `uuid`
|
297720
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297724
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297725
|
+
Binary data inserted for `string` type on column `uuid`
|
297726
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297730
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297731
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297732
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297733
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297734
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297737
|
+
Binary data inserted for `string` type on column `uuid`
|
297738
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297742
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297743
|
+
Binary data inserted for `string` type on column `uuid`
|
297744
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297748
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297749
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297750
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297751
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297752
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297753
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297754
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297755
|
+
Binary data inserted for `string` type on column `uuid`
|
297756
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297760
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297761
|
+
Binary data inserted for `string` type on column `uuid`
|
297762
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297766
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297768
|
+
Binary data inserted for `string` type on column `uuid`
|
297769
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297773
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297774
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297775
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
|
297776
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))[0m
|
297777
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1))
|
297778
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297779
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297780
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297781
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297782
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297783
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
297784
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297785
|
+
Binary data inserted for `string` type on column `uuid`
|
297786
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297791
|
+
Binary data inserted for `string` type on column `uuid`
|
297792
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297796
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297797
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297798
|
+
Binary data inserted for `string` type on column `uuid`
|
297799
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297803
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297804
|
+
Binary data inserted for `string` type on column `uuid`
|
297805
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297809
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))
|
297810
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (3))[0m
|
297811
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
|
297812
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))[0m
|
297813
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version in (1,2))
|
297814
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297815
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297816
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297817
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297818
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297819
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297821
|
+
Binary data inserted for `string` type on column `uuid`
|
297822
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297826
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297827
|
+
Binary data inserted for `string` type on column `uuid`
|
297828
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297832
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297833
|
+
Binary data inserted for `string` type on column `uuid`
|
297834
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-13 23:12:12.038596' WHERE "products"."id" = 125[0m
|
297836
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297837
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297838
|
+
Binary data inserted for `string` type on column `uuid`
|
297839
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 125]]
|
297841
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297842
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297843
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297844
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297845
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297846
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297847
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
297848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297849
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 372]]
|
297850
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297852
|
+
Binary data inserted for `string` type on column `uuid`
|
297853
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297857
|
+
[1m[35m (2.5ms)[0m SAVEPOINT active_record_1
|
297858
|
+
Binary data inserted for `string` type on column `uuid`
|
297859
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297864
|
+
Binary data inserted for `string` type on column `uuid`
|
297865
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297869
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297870
|
+
Binary data inserted for `string` type on column `uuid`
|
297871
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
297875
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297876
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))[0m
|
297877
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (2))
|
297878
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297879
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297880
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297881
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297882
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297883
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297884
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297885
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297886
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297887
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297888
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297889
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297890
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297891
|
+
Binary data inserted for `string` type on column `uuid`
|
297892
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
297896
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
297897
|
+
Binary data inserted for `string` type on column `uuid`
|
297898
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297902
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297903
|
+
[1m[35mProduct Load (0.2ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = 'b9cd30172c2767a47c240bf252668945b4733b27' LIMIT 1
|
297904
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= (1))[0m
|
297905
|
+
[1m[35mCheese Load (0.1ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = '411167c8f6edbc47c1ed8db8dc35eeb134e97e52' LIMIT 1
|
297906
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297907
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297908
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
297909
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
297910
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 372]]
|
297911
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
297912
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
297913
|
+
[1m[35m (0.0ms)[0m begin transaction
|
297914
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|