traka 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +13 -9
- data/lib/generators/traka/install_generator.rb +11 -2
- data/{test/dummy/db/migrate/20131227113858_create_traka_changes.rb → lib/generators/traka/templates/migration.rb} +6 -3
- data/lib/traka.rb +1 -3
- data/lib/traka/{is_traka.rb → change.rb} +14 -22
- data/lib/traka/is_trakable.rb +3 -3
- data/lib/traka/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140102053940_create_traka_changes.rb +15 -0
- data/test/dummy/db/schema.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +39 -0
- data/test/dummy/log/test.log +2757 -0
- data/test/is_trakable_test.rb +8 -8
- data/test/traka_change_test.rb +158 -0
- metadata +8 -13
- data/test/dummy/app/models/traka_change.rb +0 -5
- data/test/dummy/test/fixtures/traka_changes.yml +0 -13
- data/test/dummy/test/unit/traka_change_test.rb +0 -7
- data/test/is_traka_test.rb +0 -158
data/README.md
CHANGED
@@ -38,32 +38,33 @@ Each model should have a string "uuid" column. If you want to use a different co
|
|
38
38
|
To access the current set of staged changes:
|
39
39
|
|
40
40
|
```ruby
|
41
|
-
TrakaChange.staged_changes
|
41
|
+
TrakaChange.staged_changes #=> [traka_change_record, ...]
|
42
42
|
```
|
43
43
|
|
44
44
|
Each TrakaChange record can be resolved to the original record (except "destroy"):
|
45
45
|
|
46
46
|
```ruby
|
47
|
-
TrakaChange.staged_changes.first.get_record
|
47
|
+
TrakaChange.staged_changes.first.get_record #=> record
|
48
48
|
```
|
49
49
|
|
50
50
|
To fetch a changeset across multiple versions. Assuming current version is 5, to get changes from v2 onwards:
|
51
51
|
|
52
52
|
```ruby
|
53
|
-
TrakaChange.changes_from(2)
|
53
|
+
TrakaChange.changes_from(2) #=> [traka_change_record, ...]
|
54
54
|
```
|
55
55
|
|
56
56
|
Or just get changes from v2 to v4:
|
57
57
|
|
58
58
|
```ruby
|
59
|
-
TrakaChange.changes_in_range(2, 4)
|
59
|
+
TrakaChange.changes_in_range(2, 4) #=> [traka_change_record, ...]
|
60
60
|
```
|
61
61
|
|
62
62
|
The above methods will automatically cleanse obsolete changes. To see everything:
|
63
63
|
|
64
64
|
```ruby
|
65
|
-
TrakaChange.
|
66
|
-
TrakaChange.
|
65
|
+
TrakaChange.staged_changes(false) #=> [traka_change_record, ...]
|
66
|
+
TrakaChange.changes_from(2, false) #=> [traka_change_record, ...]
|
67
|
+
TrakaChange.changes_in_range(2, 4, false) #=> [traka_change_record, ...]
|
67
68
|
```
|
68
69
|
|
69
70
|
To see the current version:
|
@@ -75,9 +76,9 @@ To see the current version:
|
|
75
76
|
To publish a new version:
|
76
77
|
|
77
78
|
```ruby
|
78
|
-
TrakaChange.latest_version
|
79
|
+
TrakaChange.latest_version #=> 1
|
79
80
|
TrakaChange.publish_new_version!
|
80
|
-
TrakaChange.latest_version
|
81
|
+
TrakaChange.latest_version #=> 2
|
81
82
|
```
|
82
83
|
|
83
84
|
## Example
|
@@ -89,6 +90,7 @@ Assuming models called Product and Car exist.
|
|
89
90
|
b = Product.create(:name => "Product 2")
|
90
91
|
c = Car.create(:name => "Car 1")
|
91
92
|
|
93
|
+
TrakaChange.latest_version #=> 1
|
92
94
|
TrakaChange.staged_changes #=> [TrakaChange<create>, TrakaChange<create>, TrakaChange<create>]
|
93
95
|
|
94
96
|
b.name = "New name"
|
@@ -99,6 +101,8 @@ Assuming models called Product and Car exist.
|
|
99
101
|
|
100
102
|
TrakaChange.publish_new_version!
|
101
103
|
|
104
|
+
TrakaChange.latest_version #=> 2
|
105
|
+
|
102
106
|
b.destroy
|
103
107
|
a.name = "New name"
|
104
108
|
a.save
|
@@ -109,7 +113,7 @@ Assuming models called Product and Car exist.
|
|
109
113
|
a.name = "Another name"
|
110
114
|
a.save
|
111
115
|
|
112
|
-
# The update above is filtered because we already know "a" has been updated in this changeset.
|
116
|
+
# The second update above is filtered because we already know "a" has been updated in this changeset.
|
113
117
|
TrakaChange.staged_changes #=> [TrakaChange<destroy>, TrakaChange<update>]
|
114
118
|
TrakaChange.staged_changes.last.get_record #=> a
|
115
119
|
|
@@ -1,17 +1,26 @@
|
|
1
|
+
require 'rails/generators/migration'
|
2
|
+
require 'rails/generators/active_record'
|
3
|
+
|
1
4
|
module Traka
|
2
5
|
module Generators
|
3
6
|
class InstallGenerator < ::Rails::Generators::Base
|
7
|
+
include Rails::Generators::Migration
|
8
|
+
|
4
9
|
source_root File.expand_path("../templates", __FILE__)
|
5
10
|
|
6
11
|
desc "Installs Traka into the app."
|
7
12
|
|
8
|
-
def
|
9
|
-
|
13
|
+
def create_migration
|
14
|
+
migration_template 'migration.rb', 'db/migrate/create_traka_changes.rb'
|
10
15
|
end
|
11
16
|
|
12
17
|
def create_version_file
|
13
18
|
directory "public/system"
|
14
19
|
end
|
20
|
+
|
21
|
+
def self.next_migration_number dirname
|
22
|
+
ActiveRecord::Generators::Base.next_migration_number dirname
|
23
|
+
end
|
15
24
|
end
|
16
25
|
end
|
17
26
|
end
|
@@ -1,12 +1,15 @@
|
|
1
1
|
class CreateTrakaChanges < ActiveRecord::Migration
|
2
|
-
def
|
3
|
-
create_table :traka_changes do |t|
|
2
|
+
def self.up
|
3
|
+
create_table :traka_changes, :force => true do |t|
|
4
4
|
t.string :klass
|
5
5
|
t.string :uuid
|
6
6
|
t.string :action_type
|
7
7
|
t.integer :version
|
8
|
-
|
9
8
|
t.timestamps
|
10
9
|
end
|
11
10
|
end
|
11
|
+
|
12
|
+
def self.down
|
13
|
+
drop_table :traka_changes
|
14
|
+
end
|
12
15
|
end
|
data/lib/traka.rb
CHANGED
@@ -1,17 +1,12 @@
|
|
1
1
|
module Traka
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
included do
|
6
|
-
end
|
7
|
-
|
8
|
-
module ClassMethods
|
9
|
-
def is_traka(options={})
|
10
|
-
before_save :set_version
|
2
|
+
class Change < ActiveRecord::Base
|
3
|
+
self.table_name = "traka_changes"
|
11
4
|
|
12
|
-
|
13
|
-
|
5
|
+
attr_accessible :klass, :action_type, :uuid, :version
|
6
|
+
|
7
|
+
before_save :set_version
|
14
8
|
|
9
|
+
class << self
|
15
10
|
def latest_version
|
16
11
|
begin
|
17
12
|
File.read(version_path).to_i
|
@@ -83,18 +78,15 @@ module Traka
|
|
83
78
|
end
|
84
79
|
end
|
85
80
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
end
|
90
|
-
|
91
|
-
def get_record
|
92
|
-
ar = ActiveRecord::Base.const_get(self.klass)
|
93
|
-
ar.where(ar.traka_uuid => self.uuid).first
|
94
|
-
end
|
81
|
+
def get_record
|
82
|
+
ar = ActiveRecord::Base.const_get(self.klass)
|
83
|
+
ar.where(ar.traka_uuid => self.uuid).first
|
95
84
|
end
|
96
85
|
|
86
|
+
private
|
87
|
+
|
88
|
+
def set_version
|
89
|
+
self.version = self.class.latest_version + 1
|
90
|
+
end
|
97
91
|
end
|
98
92
|
end
|
99
|
-
|
100
|
-
ActiveRecord::Base.send :include, Traka::IsTraka
|
data/lib/traka/is_trakable.rb
CHANGED
@@ -38,9 +38,9 @@ module Traka
|
|
38
38
|
end
|
39
39
|
|
40
40
|
def record_traka_change(action_type)
|
41
|
-
|
42
|
-
|
43
|
-
|
41
|
+
Traka::Change.create(:klass => self.class.to_s,
|
42
|
+
:uuid => self.attributes[self.class.traka_uuid],
|
43
|
+
:action_type => action_type)
|
44
44
|
end
|
45
45
|
end
|
46
46
|
end
|
data/lib/traka/version.rb
CHANGED
Binary file
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class CreateTrakaChanges < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :traka_changes, :force => true do |t|
|
4
|
+
t.string :klass
|
5
|
+
t.string :uuid
|
6
|
+
t.string :action_type
|
7
|
+
t.integer :version
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.down
|
13
|
+
drop_table :traka_changes
|
14
|
+
end
|
15
|
+
end
|
data/test/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
14
|
+
ActiveRecord::Schema.define(:version => 20140102053940) do
|
15
15
|
|
16
16
|
create_table "cheeses", :force => true do |t|
|
17
17
|
t.string "name"
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -101,3 +101,42 @@ Connecting to database specified by database.yml
|
|
101
101
|
Connecting to database specified by database.yml
|
102
102
|
Connecting to database specified by database.yml
|
103
103
|
Connecting to database specified by database.yml
|
104
|
+
Connecting to database specified by database.yml
|
105
|
+
Connecting to database specified by database.yml
|
106
|
+
[1m[36m (0.9ms)[0m [1mselect sqlite_version(*)[0m
|
107
|
+
[1m[35m (35.4ms)[0m CREATE TABLE "cheeses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
108
|
+
[1m[36m (8.2ms)[0m [1mCREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "uuid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
109
|
+
[1m[35m (23.7ms)[0m CREATE TABLE "traka_changes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "klass" varchar(255), "uuid" varchar(255), "action_type" varchar(255), "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
110
|
+
[1m[36m (13.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
111
|
+
[1m[35m (25.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
112
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
113
|
+
[1m[35m (39.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131223111034')
|
114
|
+
[1m[36m (11.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131219051348')[0m
|
115
|
+
[1m[35m (34.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131219051328')
|
116
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
117
|
+
Connecting to database specified by database.yml
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
Connecting to database specified by database.yml
|
120
|
+
Connecting to database specified by database.yml
|
121
|
+
[1m[36m (1.0ms)[0m [1mselect sqlite_version(*)[0m
|
122
|
+
[1m[35m (36.8ms)[0m CREATE TABLE "cheeses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
123
|
+
[1m[36m (37.3ms)[0m [1mCREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "uuid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
124
|
+
[1m[35m (11.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
125
|
+
[1m[36m (17.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
126
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
127
|
+
[1m[36m (31.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131223111034')[0m
|
128
|
+
[1m[35m (22.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131219051348')
|
129
|
+
[1m[36m (16.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131219051328')[0m
|
130
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
131
|
+
Connecting to database specified by database.yml
|
132
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
133
|
+
Migrating to CreateProducts (20131219051328)
|
134
|
+
Migrating to CreateCheeses (20131219051348)
|
135
|
+
Migrating to CreateTrakaChanges (20140102053940)
|
136
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "traka_changes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "klass" varchar(255), "uuid" varchar(255), "action_type" varchar(255), "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
139
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140102053940')[0m
|
140
|
+
[1m[35m (37.2ms)[0m commit transaction
|
141
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
142
|
+
Connecting to database specified by database.yml
|
data/test/dummy/log/test.log
CHANGED
@@ -279366,3 +279366,2760 @@ Binary data inserted for `string` type on column `uuid`
|
|
279366
279366
|
[1m[36m (20.5ms)[0m [1mcommit transaction[0m
|
279367
279367
|
[1m[35m (0.2ms)[0m begin transaction
|
279368
279368
|
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279369
|
+
Connecting to database specified by database.yml
|
279370
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
279371
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279372
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
279373
|
+
[1m[35mSQL (22.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279374
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279375
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279376
|
+
Binary data inserted for `string` type on column `uuid`
|
279377
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7a284f815bb730c90aeef6a193068aa182de3e2d"], ["version", 2]]
|
279378
|
+
Binary data inserted for `string` type on column `uuid`
|
279379
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7a284f815bb730c90aeef6a193068aa182de3e2d"]]
|
279380
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279381
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279382
|
+
Binary data inserted for `string` type on column `uuid`
|
279383
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "c99882247da70ae88927800d5d2ae05bda1a1805"], ["version", 2]]
|
279384
|
+
Binary data inserted for `string` type on column `code`
|
279385
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "c99882247da70ae88927800d5d2ae05bda1a1805"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279386
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279387
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279388
|
+
Binary data inserted for `string` type on column `uuid`
|
279389
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7a284f815bb730c90aeef6a193068aa182de3e2d"], ["version", 2]]
|
279390
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
|
279391
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279392
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279393
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279394
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279395
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279396
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279397
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279398
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279399
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279400
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279401
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279402
|
+
Binary data inserted for `string` type on column `uuid`
|
279403
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"], ["version", 2]]
|
279404
|
+
Binary data inserted for `string` type on column `uuid`
|
279405
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"]]
|
279406
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279407
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279408
|
+
Binary data inserted for `string` type on column `uuid`
|
279409
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "48c545a97b9d02ef9dbe6f4cd040940cc83b9ff1"], ["version", 2]]
|
279410
|
+
Binary data inserted for `string` type on column `code`
|
279411
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "48c545a97b9d02ef9dbe6f4cd040940cc83b9ff1"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279412
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279413
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279414
|
+
Binary data inserted for `string` type on column `uuid`
|
279415
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"], ["version", 2]]
|
279416
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.252007' WHERE "products"."id" = 303[0m
|
279417
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279418
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279419
|
+
Binary data inserted for `string` type on column `uuid`
|
279420
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "09a76b809d11730a1c458051f9e615033460cd95"], ["version", 2]]
|
279421
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:02.254116' WHERE "products"."id" = 303[0m
|
279422
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279423
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279424
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279425
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279426
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
279427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279428
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279429
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279430
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279431
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279432
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279433
|
+
Binary data inserted for `string` type on column `uuid`
|
279434
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"], ["version", 2]]
|
279435
|
+
Binary data inserted for `string` type on column `uuid`
|
279436
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"]]
|
279437
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279438
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279439
|
+
Binary data inserted for `string` type on column `uuid`
|
279440
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "1d76aa1d2f22ed3c2e424c350e1f63627ec687a2"], ["version", 2]]
|
279441
|
+
Binary data inserted for `string` type on column `code`
|
279442
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1d76aa1d2f22ed3c2e424c350e1f63627ec687a2"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279443
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279444
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279445
|
+
Binary data inserted for `string` type on column `uuid`
|
279446
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"], ["version", 3]]
|
279447
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.263094' WHERE "products"."id" = 303
|
279448
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279449
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279450
|
+
Binary data inserted for `string` type on column `uuid`
|
279451
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "1d76aa1d2f22ed3c2e424c350e1f63627ec687a2"], ["version", 3]]
|
279452
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.265326' WHERE "cheeses"."id" = 294
|
279453
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279454
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279455
|
+
Binary data inserted for `string` type on column `uuid`
|
279456
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6e36dd36945a2c9c11405ab824edf4b871e23bc1"], ["version", 3]]
|
279457
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
|
279458
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279459
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279460
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279461
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279462
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279463
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279464
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279465
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279466
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279467
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279468
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279469
|
+
Binary data inserted for `string` type on column `uuid`
|
279470
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 2]]
|
279471
|
+
Binary data inserted for `string` type on column `uuid`
|
279472
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"]]
|
279473
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
279474
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279475
|
+
Binary data inserted for `string` type on column `uuid`
|
279476
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "c4650a3f0e15202b31f5d930b2443d0528fbf27f"], ["version", 2]]
|
279477
|
+
Binary data inserted for `string` type on column `code`
|
279478
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "c4650a3f0e15202b31f5d930b2443d0528fbf27f"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279479
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279480
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279481
|
+
Binary data inserted for `string` type on column `uuid`
|
279482
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 3]]
|
279483
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.276271' WHERE "products"."id" = 303[0m
|
279484
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279485
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279486
|
+
Binary data inserted for `string` type on column `uuid`
|
279487
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 3]]
|
279488
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:02.277946' WHERE "products"."id" = 303[0m
|
279489
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279490
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279491
|
+
Binary data inserted for `string` type on column `uuid`
|
279492
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "036d6a610f354ea22191220bfb2e03f95b7f3ca5"], ["version", 3]]
|
279493
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-01 06:42:02.279533' WHERE "products"."id" = 303[0m
|
279494
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279496
|
+
Binary data inserted for `string` type on column `uuid`
|
279497
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "c4650a3f0e15202b31f5d930b2443d0528fbf27f"], ["version", 3]]
|
279498
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.280954' WHERE "cheeses"."id" = 294[0m
|
279499
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279500
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279501
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279502
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279503
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
279504
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279505
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279506
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279507
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279508
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279509
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279510
|
+
Binary data inserted for `string` type on column `uuid`
|
279511
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
|
279512
|
+
Binary data inserted for `string` type on column `uuid`
|
279513
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"]]
|
279514
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279515
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279516
|
+
Binary data inserted for `string` type on column `uuid`
|
279517
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7b8dc95287d6916c6be66fb0dde7c315fffdc130"], ["version", 2]]
|
279518
|
+
Binary data inserted for `string` type on column `code`
|
279519
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "7b8dc95287d6916c6be66fb0dde7c315fffdc130"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279520
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279521
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279522
|
+
Binary data inserted for `string` type on column `uuid`
|
279523
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
|
279524
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.289649' WHERE "products"."id" = 303
|
279525
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279526
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279527
|
+
Binary data inserted for `string` type on column `uuid`
|
279528
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
|
279529
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:02.291113' WHERE "products"."id" = 303
|
279530
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279531
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279532
|
+
Binary data inserted for `string` type on column `uuid`
|
279533
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "da432d4f282882db2cf04c9ef6c5a0f8d54f9d3e"], ["version", 2]]
|
279534
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
|
279535
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279537
|
+
Binary data inserted for `string` type on column `uuid`
|
279538
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "7b8dc95287d6916c6be66fb0dde7c315fffdc130"], ["version", 2]]
|
279539
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 294]]
|
279540
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279541
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279542
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279543
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279544
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279545
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279546
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279547
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279548
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279549
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279550
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279551
|
+
Binary data inserted for `string` type on column `uuid`
|
279552
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6c14969fefa59331528fe3052979b6435e9ea668"], ["version", 2]]
|
279553
|
+
Binary data inserted for `string` type on column `uuid`
|
279554
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "6c14969fefa59331528fe3052979b6435e9ea668"]]
|
279555
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279556
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279557
|
+
Binary data inserted for `string` type on column `uuid`
|
279558
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "e2a7346b4fc5bcc4768a5ecc7bc22a639871c2c3"], ["version", 2]]
|
279559
|
+
Binary data inserted for `string` type on column `code`
|
279560
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "e2a7346b4fc5bcc4768a5ecc7bc22a639871c2c3"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279561
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279562
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279563
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279564
|
+
Binary data inserted for `string` type on column `uuid`
|
279565
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "0a10e6982c8f07c3dd652005db32b6e2d3e90f3b"], ["version", 3]]
|
279566
|
+
Binary data inserted for `string` type on column `uuid`
|
279567
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "0a10e6982c8f07c3dd652005db32b6e2d3e90f3b"]]
|
279568
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279569
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279570
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279571
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
279572
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
279573
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
279574
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279575
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279576
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279577
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279578
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279579
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279580
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279581
|
+
Binary data inserted for `string` type on column `uuid`
|
279582
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "b756a33a52b65035605a2928b2f5dc6dc7c4fed2"], ["version", 2]]
|
279583
|
+
Binary data inserted for `string` type on column `uuid`
|
279584
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "b756a33a52b65035605a2928b2f5dc6dc7c4fed2"]]
|
279585
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279587
|
+
Binary data inserted for `string` type on column `uuid`
|
279588
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "5f48675f6350eb87bc8c0d0852e993dd8e4986ee"], ["version", 2]]
|
279589
|
+
Binary data inserted for `string` type on column `code`
|
279590
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "5f48675f6350eb87bc8c0d0852e993dd8e4986ee"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279591
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279592
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
279593
|
+
Binary data inserted for `string` type on column `uuid`
|
279594
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "b756a33a52b65035605a2928b2f5dc6dc7c4fed2"], ["version", 3]]
|
279595
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:02.327188' WHERE "products"."id" = 303[0m
|
279596
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
279597
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
279598
|
+
Binary data inserted for `string` type on column `uuid`
|
279599
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "5f48675f6350eb87bc8c0d0852e993dd8e4986ee"], ["version", 3]]
|
279600
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 294]]
|
279601
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
279602
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279603
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279604
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279605
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
279606
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279607
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279608
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279609
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279610
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279611
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279612
|
+
Binary data inserted for `string` type on column `uuid`
|
279613
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "89dd237b7aadab6a01f4f1177ea8a68a509a68ff"], ["version", 2]]
|
279614
|
+
Binary data inserted for `string` type on column `uuid`
|
279615
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "89dd237b7aadab6a01f4f1177ea8a68a509a68ff"]]
|
279616
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279617
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279618
|
+
Binary data inserted for `string` type on column `uuid`
|
279619
|
+
[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", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "1ed85a0c2f133c518c36983aa498a24e426ab59f"], ["version", 2]]
|
279620
|
+
Binary data inserted for `string` type on column `code`
|
279621
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1ed85a0c2f133c518c36983aa498a24e426ab59f"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279622
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279623
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279624
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279625
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279626
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279627
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279628
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279629
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279630
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279631
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279632
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279633
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279634
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279636
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279637
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279638
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279639
|
+
Binary data inserted for `string` type on column `uuid`
|
279640
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "2b774c34d1234463b6c00c6f6def660d72a62d51"], ["version", 2]]
|
279641
|
+
Binary data inserted for `string` type on column `uuid`
|
279642
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "2b774c34d1234463b6c00c6f6def660d72a62d51"]]
|
279643
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279644
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279645
|
+
Binary data inserted for `string` type on column `uuid`
|
279646
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["uuid", "a226617199f4bb9c60803b01ca09b5a118736d16"], ["version", 2]]
|
279647
|
+
Binary data inserted for `string` type on column `code`
|
279648
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "a226617199f4bb9c60803b01ca09b5a118736d16"], ["created_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:02 UTC +00:00]]
|
279649
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279650
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279651
|
+
[1m[35mProduct Load (0.2ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = '2b774c34d1234463b6c00c6f6def660d72a62d51' LIMIT 1
|
279652
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279653
|
+
[1m[35mCheese Load (0.2ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'a226617199f4bb9c60803b01ca09b5a118736d16' LIMIT 1
|
279654
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279655
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279656
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279657
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279658
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279659
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279660
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279661
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279662
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
279663
|
+
Connecting to database specified by database.yml
|
279664
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
279665
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279666
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279667
|
+
[1m[35mSQL (22.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279668
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279669
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279670
|
+
Binary data inserted for `string` type on column `uuid`
|
279671
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a4d64eb4cbdcf36c3c573c9e293a19b614429ef8"], ["version", 2]]
|
279672
|
+
Binary data inserted for `string` type on column `uuid`
|
279673
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a4d64eb4cbdcf36c3c573c9e293a19b614429ef8"]]
|
279674
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279675
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279676
|
+
Binary data inserted for `string` type on column `uuid`
|
279677
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "cc447dcf932965644e0c5a7cfe9df909869ea738"], ["version", 2]]
|
279678
|
+
Binary data inserted for `string` type on column `code`
|
279679
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "cc447dcf932965644e0c5a7cfe9df909869ea738"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279680
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279681
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279682
|
+
Binary data inserted for `string` type on column `uuid`
|
279683
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a4d64eb4cbdcf36c3c573c9e293a19b614429ef8"], ["version", 2]]
|
279684
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
|
279685
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279686
|
+
[1m[35mTrakaChange Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279687
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279688
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279689
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279690
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279691
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279692
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279693
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279694
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279695
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279696
|
+
Binary data inserted for `string` type on column `uuid`
|
279697
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"], ["version", 2]]
|
279698
|
+
Binary data inserted for `string` type on column `uuid`
|
279699
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"]]
|
279700
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279701
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279702
|
+
Binary data inserted for `string` type on column `uuid`
|
279703
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "34a354c33432c5dd0aca203c3afa875e752cb794"], ["version", 2]]
|
279704
|
+
Binary data inserted for `string` type on column `code`
|
279705
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "34a354c33432c5dd0aca203c3afa875e752cb794"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279706
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279707
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279708
|
+
Binary data inserted for `string` type on column `uuid`
|
279709
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"], ["version", 2]]
|
279710
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.635648' WHERE "products"."id" = 303[0m
|
279711
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279712
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279713
|
+
Binary data inserted for `string` type on column `uuid`
|
279714
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "05747061aa0218c8aa826d8de4911cb77963dd69"], ["version", 2]]
|
279715
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:21.638053' WHERE "products"."id" = 303[0m
|
279716
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279717
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279718
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279719
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279720
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
279721
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279722
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279723
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279724
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279725
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279726
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279727
|
+
Binary data inserted for `string` type on column `uuid`
|
279728
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"], ["version", 2]]
|
279729
|
+
Binary data inserted for `string` type on column `uuid`
|
279730
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"]]
|
279731
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279732
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279733
|
+
Binary data inserted for `string` type on column `uuid`
|
279734
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "3494534ccba7e8ed1b5c3452b5199a9989c7f245"], ["version", 2]]
|
279735
|
+
Binary data inserted for `string` type on column `code`
|
279736
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "3494534ccba7e8ed1b5c3452b5199a9989c7f245"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279737
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279738
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279739
|
+
Binary data inserted for `string` type on column `uuid`
|
279740
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"], ["version", 3]]
|
279741
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.646940' WHERE "products"."id" = 303
|
279742
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279743
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279744
|
+
Binary data inserted for `string` type on column `uuid`
|
279745
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "3494534ccba7e8ed1b5c3452b5199a9989c7f245"], ["version", 3]]
|
279746
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.649187' WHERE "cheeses"."id" = 294
|
279747
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279748
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279749
|
+
Binary data inserted for `string` type on column `uuid`
|
279750
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11ae4de40bd24719cb156797360a1ab006c2dca5"], ["version", 3]]
|
279751
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
|
279752
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279753
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279754
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279755
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279756
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279757
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279758
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279760
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279761
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279762
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279763
|
+
Binary data inserted for `string` type on column `uuid`
|
279764
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 2]]
|
279765
|
+
Binary data inserted for `string` type on column `uuid`
|
279766
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"]]
|
279767
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279768
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279769
|
+
Binary data inserted for `string` type on column `uuid`
|
279770
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "d380a8832db8e175db2d9841ba23fb8ddf26fd24"], ["version", 2]]
|
279771
|
+
Binary data inserted for `string` type on column `code`
|
279772
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "d380a8832db8e175db2d9841ba23fb8ddf26fd24"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279773
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279774
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279775
|
+
Binary data inserted for `string` type on column `uuid`
|
279776
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 3]]
|
279777
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.660288' WHERE "products"."id" = 303[0m
|
279778
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279779
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279780
|
+
Binary data inserted for `string` type on column `uuid`
|
279781
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 3]]
|
279782
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:21.661929' WHERE "products"."id" = 303[0m
|
279783
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279784
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
279785
|
+
Binary data inserted for `string` type on column `uuid`
|
279786
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "845fa13d06a8b29ac4fceadccc30a5f3d92d4264"], ["version", 3]]
|
279787
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-01 06:42:21.663480' WHERE "products"."id" = 303[0m
|
279788
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279789
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279790
|
+
Binary data inserted for `string` type on column `uuid`
|
279791
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "d380a8832db8e175db2d9841ba23fb8ddf26fd24"], ["version", 3]]
|
279792
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.664999' WHERE "cheeses"."id" = 294[0m
|
279793
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279794
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279795
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279796
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279797
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
279798
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279799
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279800
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279801
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279802
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279803
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279804
|
+
Binary data inserted for `string` type on column `uuid`
|
279805
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
|
279806
|
+
Binary data inserted for `string` type on column `uuid`
|
279807
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"]]
|
279808
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279809
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279810
|
+
Binary data inserted for `string` type on column `uuid`
|
279811
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a2a62e0dc0f9eb085445493d7d5265dadd3a01a2"], ["version", 2]]
|
279812
|
+
Binary data inserted for `string` type on column `code`
|
279813
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a2a62e0dc0f9eb085445493d7d5265dadd3a01a2"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279814
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279816
|
+
Binary data inserted for `string` type on column `uuid`
|
279817
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
|
279818
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.674357' WHERE "products"."id" = 303
|
279819
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279820
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279821
|
+
Binary data inserted for `string` type on column `uuid`
|
279822
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
|
279823
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-01 06:42:21.675845' WHERE "products"."id" = 303
|
279824
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279825
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279826
|
+
Binary data inserted for `string` type on column `uuid`
|
279827
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9e77fc7969854b7b8d8588d30c9e58eb72b78963"], ["version", 2]]
|
279828
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 303]]
|
279829
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279830
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279831
|
+
Binary data inserted for `string` type on column `uuid`
|
279832
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a2a62e0dc0f9eb085445493d7d5265dadd3a01a2"], ["version", 2]]
|
279833
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 294]]
|
279834
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279835
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279836
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279837
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279838
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279839
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279840
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279841
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279842
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279843
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279845
|
+
Binary data inserted for `string` type on column `uuid`
|
279846
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e92b9c3a4b4eb158a002d0e76c27d6f8bf487eab"], ["version", 2]]
|
279847
|
+
Binary data inserted for `string` type on column `uuid`
|
279848
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e92b9c3a4b4eb158a002d0e76c27d6f8bf487eab"]]
|
279849
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279850
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279851
|
+
Binary data inserted for `string` type on column `uuid`
|
279852
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "11a1a3e6b09bf85a362f30928f5aec8db079a5d6"], ["version", 2]]
|
279853
|
+
Binary data inserted for `string` type on column `code`
|
279854
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "11a1a3e6b09bf85a362f30928f5aec8db079a5d6"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279855
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279856
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279857
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279858
|
+
Binary data inserted for `string` type on column `uuid`
|
279859
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "c56cedc0f89e1a98501da6eb34093a79bdab6da4"], ["version", 3]]
|
279860
|
+
Binary data inserted for `string` type on column `uuid`
|
279861
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "c56cedc0f89e1a98501da6eb34093a79bdab6da4"]]
|
279862
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279863
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279864
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279865
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
279866
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
279867
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
279868
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279869
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279870
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279871
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279872
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279873
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279874
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279875
|
+
Binary data inserted for `string` type on column `uuid`
|
279876
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "992c8c2d84fe15ef464d66dd55083f4f4fa5f864"], ["version", 2]]
|
279877
|
+
Binary data inserted for `string` type on column `uuid`
|
279878
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "992c8c2d84fe15ef464d66dd55083f4f4fa5f864"]]
|
279879
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279881
|
+
Binary data inserted for `string` type on column `uuid`
|
279882
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9d48171b61c17cfa726ddc9a7dac2c593c1238b3"], ["version", 2]]
|
279883
|
+
Binary data inserted for `string` type on column `code`
|
279884
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "9d48171b61c17cfa726ddc9a7dac2c593c1238b3"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279885
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279886
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279887
|
+
Binary data inserted for `string` type on column `uuid`
|
279888
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "992c8c2d84fe15ef464d66dd55083f4f4fa5f864"], ["version", 3]]
|
279889
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-01 06:42:21.698769' WHERE "products"."id" = 303[0m
|
279890
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279891
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279892
|
+
Binary data inserted for `string` type on column `uuid`
|
279893
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "9d48171b61c17cfa726ddc9a7dac2c593c1238b3"], ["version", 3]]
|
279894
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 294]]
|
279895
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279896
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279897
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
279898
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
279899
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
279900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279901
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279902
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279903
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279904
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279905
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279906
|
+
Binary data inserted for `string` type on column `uuid`
|
279907
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "12e4f3bf9a18129ec79e8b25d09b2193b87458ac"], ["version", 2]]
|
279908
|
+
Binary data inserted for `string` type on column `uuid`
|
279909
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "12e4f3bf9a18129ec79e8b25d09b2193b87458ac"]]
|
279910
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279912
|
+
Binary data inserted for `string` type on column `uuid`
|
279913
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "a8de2ca4f6e5ff86cd92b44caa6786fb94380078"], ["version", 2]]
|
279914
|
+
Binary data inserted for `string` type on column `code`
|
279915
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a8de2ca4f6e5ff86cd92b44caa6786fb94380078"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279916
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
279917
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279918
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279919
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
279920
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279921
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279922
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279923
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
279924
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279925
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279926
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
279927
|
+
[1m[35m (0.1ms)[0m begin transaction
|
279928
|
+
[1m[36mTrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279929
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
279930
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279931
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
279932
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
279933
|
+
Binary data inserted for `string` type on column `uuid`
|
279934
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ee6a9d9886fc595da0855e3160b9718813888875"], ["version", 2]]
|
279935
|
+
Binary data inserted for `string` type on column `uuid`
|
279936
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ee6a9d9886fc595da0855e3160b9718813888875"]]
|
279937
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279938
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
279939
|
+
Binary data inserted for `string` type on column `uuid`
|
279940
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "979a121eaf4d23d6c72430d0dd5ed81b3b9e607d"], ["version", 2]]
|
279941
|
+
Binary data inserted for `string` type on column `code`
|
279942
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "979a121eaf4d23d6c72430d0dd5ed81b3b9e607d"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279943
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
279944
|
+
[1m[36mTrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279945
|
+
[1m[35mProduct Load (0.2ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = 'ee6a9d9886fc595da0855e3160b9718813888875' LIMIT 1
|
279946
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
279947
|
+
[1m[35mCheese Load (0.1ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = '979a121eaf4d23d6c72430d0dd5ed81b3b9e607d' LIMIT 1
|
279948
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279949
|
+
[1m[35m (0.0ms)[0m begin transaction
|
279950
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279951
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
279952
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 879]]
|
279953
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279954
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
279955
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279956
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
279957
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 879]]
|
279958
|
+
[1m[36m (67.5ms)[0m [1mcommit transaction[0m
|
279959
|
+
[1m[35m (0.1ms)[0m begin transaction
|
279960
|
+
Binary data inserted for `string` type on column `uuid`
|
279961
|
+
[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", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "8937fb5ca3e1c278402a5fab9afb2da1e70e3376"], ["version", 2]]
|
279962
|
+
Binary data inserted for `string` type on column `code`
|
279963
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8937fb5ca3e1c278402a5fab9afb2da1e70e3376"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279964
|
+
[1m[36m (13.4ms)[0m [1mcommit transaction[0m
|
279965
|
+
[1m[35mTrakaChange Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
279966
|
+
[1m[36mTrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
279967
|
+
[1m[35m (0.1ms)[0m begin transaction
|
279968
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 880]]
|
279969
|
+
[1m[35m (32.4ms)[0m commit transaction
|
279970
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279971
|
+
Binary data inserted for `string` type on column `uuid`
|
279972
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ce5759a6251f42c27e91ac90a331f174b800a088"], ["version", 2]]
|
279973
|
+
Binary data inserted for `string` type on column `code`
|
279974
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "ce5759a6251f42c27e91ac90a331f174b800a088"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279975
|
+
[1m[35m (23.4ms)[0m commit transaction
|
279976
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279977
|
+
Binary data inserted for `string` type on column `uuid`
|
279978
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "ce5759a6251f42c27e91ac90a331f174b800a088"], ["version", 2]]
|
279979
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 295]]
|
279980
|
+
[1m[35m (10.4ms)[0m commit transaction
|
279981
|
+
[1m[36mTrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
279982
|
+
[1m[35mTrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
279983
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279984
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 881]]
|
279985
|
+
[1m[36m (23.6ms)[0m [1mcommit transaction[0m
|
279986
|
+
[1m[35m (0.2ms)[0m begin transaction
|
279987
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 882]]
|
279988
|
+
[1m[35m (9.1ms)[0m commit transaction
|
279989
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279990
|
+
Binary data inserted for `string` type on column `uuid`
|
279991
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e4f33583e64c88aed5d76bd7a3efb13eb86c3357"], ["version", 2]]
|
279992
|
+
Binary data inserted for `string` type on column `code`
|
279993
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "e4f33583e64c88aed5d76bd7a3efb13eb86c3357"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00]]
|
279994
|
+
[1m[35m (9.4ms)[0m commit transaction
|
279995
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279996
|
+
Binary data inserted for `string` type on column `uuid`
|
279997
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:21 UTC +00:00], ["uuid", "e4f33583e64c88aed5d76bd7a3efb13eb86c3357"], ["version", 2]]
|
279998
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:42:21.999123' WHERE "cheeses"."id" = 296[0m
|
279999
|
+
[1m[35m (18.9ms)[0m commit transaction
|
280000
|
+
[1m[36mTrakaChange Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280001
|
+
[1m[35mTrakaChange Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280002
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280003
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 883]]
|
280004
|
+
[1m[36m (8.0ms)[0m [1mcommit transaction[0m
|
280005
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280006
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 884]]
|
280007
|
+
[1m[35m (34.4ms)[0m commit transaction
|
280008
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280009
|
+
Binary data inserted for `string` type on column `uuid`
|
280010
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "c1708e9cb020fe57a8f41891b992537cecba2c75"], ["version", 2]]
|
280011
|
+
Binary data inserted for `string` type on column `code`
|
280012
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "c1708e9cb020fe57a8f41891b992537cecba2c75"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00]]
|
280013
|
+
[1m[35m (84.6ms)[0m commit transaction
|
280014
|
+
[1m[36mTrakaChange Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280015
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280016
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 885]]
|
280017
|
+
[1m[35m (11.4ms)[0m commit transaction
|
280018
|
+
[1m[36mTrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280019
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280020
|
+
Binary data inserted for `string` type on column `uuid`
|
280021
|
+
[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", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "1628722bb00aa951880431156f6be5c1896fcca0"], ["version", 2]]
|
280022
|
+
Binary data inserted for `string` type on column `uuid`
|
280023
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "1628722bb00aa951880431156f6be5c1896fcca0"]]
|
280024
|
+
[1m[36m (26.0ms)[0m [1mcommit transaction[0m
|
280025
|
+
[1m[35mTrakaChange Load (0.5ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280026
|
+
[1m[36mTrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280027
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280028
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 886]]
|
280029
|
+
[1m[35m (9.7ms)[0m commit transaction
|
280030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280031
|
+
Binary data inserted for `string` type on column `uuid`
|
280032
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "d4e70b0de18a4e5c4bcc8088191fea23f18a69f0"], ["version", 2]]
|
280033
|
+
Binary data inserted for `string` type on column `uuid`
|
280034
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "d4e70b0de18a4e5c4bcc8088191fea23f18a69f0"]]
|
280035
|
+
[1m[35m (12.2ms)[0m commit transaction
|
280036
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280037
|
+
Binary data inserted for `string` type on column `uuid`
|
280038
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "d4e70b0de18a4e5c4bcc8088191fea23f18a69f0"], ["version", 2]]
|
280039
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 304]]
|
280040
|
+
[1m[35m (25.1ms)[0m commit transaction
|
280041
|
+
[1m[36mTrakaChange Load (0.5ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280042
|
+
[1m[35mTrakaChange Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280043
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280044
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 887]]
|
280045
|
+
[1m[36m (7.7ms)[0m [1mcommit transaction[0m
|
280046
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280047
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 888]]
|
280048
|
+
[1m[35m (7.9ms)[0m commit transaction
|
280049
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280050
|
+
Binary data inserted for `string` type on column `uuid`
|
280051
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "f61bb9b3c02b37a1f421935ed8543fbc52a0bdc0"], ["version", 2]]
|
280052
|
+
Binary data inserted for `string` type on column `uuid`
|
280053
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "f61bb9b3c02b37a1f421935ed8543fbc52a0bdc0"]]
|
280054
|
+
[1m[35m (8.8ms)[0m commit transaction
|
280055
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280056
|
+
Binary data inserted for `string` type on column `uuid`
|
280057
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "f61bb9b3c02b37a1f421935ed8543fbc52a0bdc0"], ["version", 2]]
|
280058
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:42:22.314723' WHERE "products"."id" = 305[0m
|
280059
|
+
[1m[35m (22.4ms)[0m commit transaction
|
280060
|
+
[1m[36mTrakaChange Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280061
|
+
[1m[35mTrakaChange Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280063
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 889]]
|
280064
|
+
[1m[36m (36.0ms)[0m [1mcommit transaction[0m
|
280065
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280066
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 890]]
|
280067
|
+
[1m[35m (8.5ms)[0m commit transaction
|
280068
|
+
[1m[36mTrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280069
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280070
|
+
Binary data inserted for `string` type on column `uuid`
|
280071
|
+
[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", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "8727d196a90cda8043e2325fc178afc42f012868"], ["version", 2]]
|
280072
|
+
Binary data inserted for `string` type on column `uuid`
|
280073
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:42:22 UTC +00:00], ["uuid", "8727d196a90cda8043e2325fc178afc42f012868"]]
|
280074
|
+
[1m[36m (27.9ms)[0m [1mcommit transaction[0m
|
280075
|
+
[1m[35m (0.2ms)[0m begin transaction
|
280076
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280077
|
+
Connecting to database specified by database.yml
|
280078
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
280079
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280081
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280082
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280083
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280084
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280085
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280086
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280087
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280088
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280089
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280091
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280092
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280093
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280094
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280095
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280096
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280097
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280098
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280099
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280100
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280101
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280102
|
+
Connecting to database specified by database.yml
|
280103
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
280104
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280105
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280106
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280108
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280109
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280110
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280111
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280112
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280113
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280114
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280115
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280116
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280118
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280120
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280121
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280122
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280124
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280125
|
+
[1m[36mTraka::TrakaChange Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280127
|
+
[1m[36mSQL (22.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 891]]
|
280128
|
+
[1m[35m (47.8ms)[0m commit transaction
|
280129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280130
|
+
Binary data inserted for `string` type on column `uuid`
|
280131
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "834596b94a7725be31f6d94ddfa3b593f1e9c0b8"], ["version", 2]]
|
280132
|
+
Binary data inserted for `string` type on column `code`
|
280133
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "834596b94a7725be31f6d94ddfa3b593f1e9c0b8"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
|
280134
|
+
[1m[35m (9.0ms)[0m commit transaction
|
280135
|
+
[1m[36mTraka::TrakaChange Load (0.2ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280136
|
+
[1m[35mTraka::TrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280138
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 892]]
|
280139
|
+
[1m[36m (9.3ms)[0m [1mcommit transaction[0m
|
280140
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280141
|
+
Binary data inserted for `string` type on column `uuid`
|
280142
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "6d3eb1c6c8ab4a7861373c1547188c574300f4e1"], ["version", 2]]
|
280143
|
+
Binary data inserted for `string` type on column `code`
|
280144
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "6d3eb1c6c8ab4a7861373c1547188c574300f4e1"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
|
280145
|
+
[1m[36m (27.1ms)[0m [1mcommit transaction[0m
|
280146
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280147
|
+
Binary data inserted for `string` type on column `uuid`
|
280148
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "6d3eb1c6c8ab4a7861373c1547188c574300f4e1"], ["version", 2]]
|
280149
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 299]]
|
280150
|
+
[1m[36m (16.5ms)[0m [1mcommit transaction[0m
|
280151
|
+
[1m[35mTraka::TrakaChange Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280152
|
+
[1m[36mTraka::TrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280153
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280154
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 893]]
|
280155
|
+
[1m[35m (9.3ms)[0m commit transaction
|
280156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280157
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 894]]
|
280158
|
+
[1m[36m (14.4ms)[0m [1mcommit transaction[0m
|
280159
|
+
[1m[35m (0.2ms)[0m begin transaction
|
280160
|
+
Binary data inserted for `string` type on column `uuid`
|
280161
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "1048f6e7a050543ebfd77a3734b5a86a4369d646"], ["version", 2]]
|
280162
|
+
Binary data inserted for `string` type on column `code`
|
280163
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1048f6e7a050543ebfd77a3734b5a86a4369d646"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
|
280164
|
+
[1m[36m (27.8ms)[0m [1mcommit transaction[0m
|
280165
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280166
|
+
Binary data inserted for `string` type on column `uuid`
|
280167
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "1048f6e7a050543ebfd77a3734b5a86a4369d646"], ["version", 2]]
|
280168
|
+
[1m[35m (0.3ms)[0m UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:43:45.502627' WHERE "cheeses"."id" = 300
|
280169
|
+
[1m[36m (9.2ms)[0m [1mcommit transaction[0m
|
280170
|
+
[1m[35mTraka::TrakaChange Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280171
|
+
[1m[36mTraka::TrakaChange Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280172
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280173
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 895]]
|
280174
|
+
[1m[35m (9.3ms)[0m commit transaction
|
280175
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280176
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 896]]
|
280177
|
+
[1m[36m (20.8ms)[0m [1mcommit transaction[0m
|
280178
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280179
|
+
Binary data inserted for `string` type on column `uuid`
|
280180
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Cheese"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "960f572b806d4f80c0d44da2f6f97a16f8952d55"], ["version", 2]]
|
280181
|
+
Binary data inserted for `string` type on column `code`
|
280182
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "960f572b806d4f80c0d44da2f6f97a16f8952d55"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Cheese A"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00]]
|
280183
|
+
[1m[36m (10.7ms)[0m [1mcommit transaction[0m
|
280184
|
+
[1m[35mTraka::TrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280185
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280186
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 897]]
|
280187
|
+
[1m[36m (7.9ms)[0m [1mcommit transaction[0m
|
280188
|
+
[1m[35mTraka::TrakaChange Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280189
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280190
|
+
Binary data inserted for `string` type on column `uuid`
|
280191
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "81029b94935153a42ee08a0cadc3c2d74d4524b0"], ["version", 2]]
|
280192
|
+
Binary data inserted for `string` type on column `uuid`
|
280193
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "81029b94935153a42ee08a0cadc3c2d74d4524b0"]]
|
280194
|
+
[1m[35m (7.5ms)[0m commit transaction
|
280195
|
+
[1m[36mTraka::TrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280196
|
+
[1m[35mTraka::TrakaChange Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280197
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280198
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 898]]
|
280199
|
+
[1m[36m (14.4ms)[0m [1mcommit transaction[0m
|
280200
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280201
|
+
Binary data inserted for `string` type on column `uuid`
|
280202
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "05a4a27db0026b5f0419306a012d7ea02bc525f0"], ["version", 2]]
|
280203
|
+
Binary data inserted for `string` type on column `uuid`
|
280204
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "05a4a27db0026b5f0419306a012d7ea02bc525f0"]]
|
280205
|
+
[1m[36m (19.7ms)[0m [1mcommit transaction[0m
|
280206
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280207
|
+
Binary data inserted for `string` type on column `uuid`
|
280208
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "destroy"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "05a4a27db0026b5f0419306a012d7ea02bc525f0"], ["version", 2]]
|
280209
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 308]]
|
280210
|
+
[1m[36m (9.3ms)[0m [1mcommit transaction[0m
|
280211
|
+
[1m[35mTraka::TrakaChange Load (0.5ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280212
|
+
[1m[36mTraka::TrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280213
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280214
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 899]]
|
280215
|
+
[1m[35m (27.7ms)[0m commit transaction
|
280216
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280217
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 900]]
|
280218
|
+
[1m[36m (46.2ms)[0m [1mcommit transaction[0m
|
280219
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280220
|
+
Binary data inserted for `string` type on column `uuid`
|
280221
|
+
[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", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "4bee06570fb0dd4a0d75e350cff100fbbc954401"], ["version", 2]]
|
280222
|
+
Binary data inserted for `string` type on column `uuid`
|
280223
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product B"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "4bee06570fb0dd4a0d75e350cff100fbbc954401"]]
|
280224
|
+
[1m[36m (11.2ms)[0m [1mcommit transaction[0m
|
280225
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280226
|
+
Binary data inserted for `string` type on column `uuid`
|
280227
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "update"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "4bee06570fb0dd4a0d75e350cff100fbbc954401"], ["version", 2]]
|
280228
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-01 06:43:45.773757' WHERE "products"."id" = 309
|
280229
|
+
[1m[36m (29.7ms)[0m [1mcommit transaction[0m
|
280230
|
+
[1m[35mTraka::TrakaChange Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280231
|
+
[1m[36mTraka::TrakaChange Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280232
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280233
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 901]]
|
280234
|
+
[1m[35m (7.8ms)[0m commit transaction
|
280235
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280236
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 902]]
|
280237
|
+
[1m[36m (9.1ms)[0m [1mcommit transaction[0m
|
280238
|
+
[1m[35mTraka::TrakaChange Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280240
|
+
Binary data inserted for `string` type on column `uuid`
|
280241
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["klass", "Product"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "c853626fa4811bbe7dbea80175939dcadcdf73eb"], ["version", 2]]
|
280242
|
+
Binary data inserted for `string` type on column `uuid`
|
280243
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["name", "Product A"], ["updated_at", Wed, 01 Jan 2014 06:43:45 UTC +00:00], ["uuid", "c853626fa4811bbe7dbea80175939dcadcdf73eb"]]
|
280244
|
+
[1m[35m (9.4ms)[0m commit transaction
|
280245
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280246
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280247
|
+
Connecting to database specified by database.yml
|
280248
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
280249
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280250
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280251
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280253
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280259
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280261
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280267
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280272
|
+
Connecting to database specified by database.yml
|
280273
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
280274
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280275
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
280276
|
+
[1m[35mSQL (2.7ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280277
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280279
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280280
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280281
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280282
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280283
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280284
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280285
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280286
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280287
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280288
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280290
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280291
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280292
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280293
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280295
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280296
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280297
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280298
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280299
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280300
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280301
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280303
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280304
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280306
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280307
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280308
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280309
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280310
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280311
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280312
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280313
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280314
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280316
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280317
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280318
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280319
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280320
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280321
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280322
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280324
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280327
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280328
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280330
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280331
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280332
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280333
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280334
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280335
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280336
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280337
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280338
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280339
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280340
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280341
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280342
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280343
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280344
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280345
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280346
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280347
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280348
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280349
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
280350
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280351
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280352
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280353
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280354
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 903]]
|
280355
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280356
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280357
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280358
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280359
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 903]]
|
280360
|
+
[1m[35m (18.4ms)[0m commit transaction
|
280361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280362
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280363
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280364
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280365
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
280366
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280368
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280369
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280371
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
280372
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280373
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280374
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280375
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
280376
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280378
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280379
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280380
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280381
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280382
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280383
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280384
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280385
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
280386
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280387
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
280388
|
+
Connecting to database specified by database.yml
|
280389
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
280390
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280391
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280392
|
+
Binary data inserted for `string` type on column `uuid`
|
280393
|
+
[1m[35mSQL (37.4ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:48 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:48 UTC +00:00], ["uuid", "1f7eb04b38bf3c2393fbf4a48d402bce32ba47ef"], ["version", 2]]
|
280394
|
+
Binary data inserted for `string` type on column `uuid`
|
280395
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1f7eb04b38bf3c2393fbf4a48d402bce32ba47ef"]]
|
280396
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280397
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280398
|
+
Binary data inserted for `string` type on column `uuid`
|
280399
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "e98647384f8aa6f2c6f6e7ce5b62fb864a0d3190"], ["version", 2]]
|
280400
|
+
Binary data inserted for `string` type on column `code`
|
280401
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "e98647384f8aa6f2c6f6e7ce5b62fb864a0d3190"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280402
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280403
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280404
|
+
Binary data inserted for `string` type on column `uuid`
|
280405
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1f7eb04b38bf3c2393fbf4a48d402bce32ba47ef"], ["version", 2]]
|
280406
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 311]]
|
280407
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280408
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280409
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280410
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280411
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280412
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280413
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280415
|
+
Binary data inserted for `string` type on column `uuid`
|
280416
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"], ["version", 2]]
|
280417
|
+
Binary data inserted for `string` type on column `uuid`
|
280418
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"]]
|
280419
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280420
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280421
|
+
Binary data inserted for `string` type on column `uuid`
|
280422
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "c0a8b22264762704c9c4cd70cfde2e9aa7a6bb9a"], ["version", 2]]
|
280423
|
+
Binary data inserted for `string` type on column `code`
|
280424
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "c0a8b22264762704c9c4cd70cfde2e9aa7a6bb9a"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280425
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280426
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280427
|
+
Binary data inserted for `string` type on column `uuid`
|
280428
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"], ["version", 2]]
|
280429
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.029237' WHERE "products"."id" = 311[0m
|
280430
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280431
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280432
|
+
Binary data inserted for `string` type on column `uuid`
|
280433
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2ba59a65c4ff79149651365b39a5ddf77b18b879"], ["version", 2]]
|
280434
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:33:49.031365' WHERE "products"."id" = 311[0m
|
280435
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280436
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280437
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280438
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280439
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280440
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280441
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280442
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280443
|
+
Binary data inserted for `string` type on column `uuid`
|
280444
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"], ["version", 2]]
|
280445
|
+
Binary data inserted for `string` type on column `uuid`
|
280446
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"]]
|
280447
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280448
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280449
|
+
Binary data inserted for `string` type on column `uuid`
|
280450
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "21b8ae6090ec6b521228b5e9c4d8aff6ef35e58b"], ["version", 2]]
|
280451
|
+
Binary data inserted for `string` type on column `code`
|
280452
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "21b8ae6090ec6b521228b5e9c4d8aff6ef35e58b"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280453
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280454
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280455
|
+
Binary data inserted for `string` type on column `uuid`
|
280456
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"], ["version", 3]]
|
280457
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.039654' WHERE "products"."id" = 311[0m
|
280458
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280459
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280460
|
+
Binary data inserted for `string` type on column `uuid`
|
280461
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "21b8ae6090ec6b521228b5e9c4d8aff6ef35e58b"], ["version", 3]]
|
280462
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.041817' WHERE "cheeses"."id" = 302[0m
|
280463
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280464
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280465
|
+
Binary data inserted for `string` type on column `uuid`
|
280466
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0f4078cbf3bc2063baf9b465117ab64f42c474b5"], ["version", 3]]
|
280467
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 311]]
|
280468
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280469
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280470
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280471
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280472
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280473
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280474
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280475
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280476
|
+
Binary data inserted for `string` type on column `uuid`
|
280477
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 2]]
|
280478
|
+
Binary data inserted for `string` type on column `uuid`
|
280479
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"]]
|
280480
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280481
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280482
|
+
Binary data inserted for `string` type on column `uuid`
|
280483
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1c95c5252b30e2dc7c358cc5b42f08e16c8cf3fa"], ["version", 2]]
|
280484
|
+
Binary data inserted for `string` type on column `code`
|
280485
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "1c95c5252b30e2dc7c358cc5b42f08e16c8cf3fa"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280486
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280488
|
+
Binary data inserted for `string` type on column `uuid`
|
280489
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 3]]
|
280490
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.051919' WHERE "products"."id" = 311[0m
|
280491
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280493
|
+
Binary data inserted for `string` type on column `uuid`
|
280494
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 3]]
|
280495
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:33:49.053714' WHERE "products"."id" = 311[0m
|
280496
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280497
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280498
|
+
Binary data inserted for `string` type on column `uuid`
|
280499
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "40cbae4fb9d382417ff724614e781358aa6ece93"], ["version", 3]]
|
280500
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:33:49.055372' WHERE "products"."id" = 311[0m
|
280501
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280502
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280503
|
+
Binary data inserted for `string` type on column `uuid`
|
280504
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1c95c5252b30e2dc7c358cc5b42f08e16c8cf3fa"], ["version", 3]]
|
280505
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.057093' WHERE "cheeses"."id" = 302[0m
|
280506
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280507
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280508
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280509
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280510
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280511
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280512
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280513
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280514
|
+
Binary data inserted for `string` type on column `uuid`
|
280515
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
|
280516
|
+
Binary data inserted for `string` type on column `uuid`
|
280517
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"]]
|
280518
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280519
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280520
|
+
Binary data inserted for `string` type on column `uuid`
|
280521
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "22c391c7ee5b6608e3cac67825e4c4a436f9cf93"], ["version", 2]]
|
280522
|
+
Binary data inserted for `string` type on column `code`
|
280523
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "22c391c7ee5b6608e3cac67825e4c4a436f9cf93"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280524
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280525
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280526
|
+
Binary data inserted for `string` type on column `uuid`
|
280527
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
|
280528
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.065466' WHERE "products"."id" = 311[0m
|
280529
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280530
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280531
|
+
Binary data inserted for `string` type on column `uuid`
|
280532
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
|
280533
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:33:49.067097' WHERE "products"."id" = 311[0m
|
280534
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280535
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280536
|
+
Binary data inserted for `string` type on column `uuid`
|
280537
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9aea948e60e7a9e03097e24f04d4a6b47cf2b8b7"], ["version", 2]]
|
280538
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 311]]
|
280539
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280540
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280541
|
+
Binary data inserted for `string` type on column `uuid`
|
280542
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "22c391c7ee5b6608e3cac67825e4c4a436f9cf93"], ["version", 2]]
|
280543
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 302]]
|
280544
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280545
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280546
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280547
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280548
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280549
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280550
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280551
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280552
|
+
Binary data inserted for `string` type on column `uuid`
|
280553
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1e8e576ea349a1b4b4a33cff197573ec145eb8da"], ["version", 2]]
|
280554
|
+
Binary data inserted for `string` type on column `uuid`
|
280555
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "1e8e576ea349a1b4b4a33cff197573ec145eb8da"]]
|
280556
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280557
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280558
|
+
Binary data inserted for `string` type on column `uuid`
|
280559
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "18896a8702bdf354c0699bb82e3d9a4331ed9cf5"], ["version", 2]]
|
280560
|
+
Binary data inserted for `string` type on column `code`
|
280561
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "18896a8702bdf354c0699bb82e3d9a4331ed9cf5"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280562
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280563
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280564
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280565
|
+
Binary data inserted for `string` type on column `uuid`
|
280566
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "6948135c4564f32e88fddd8f65bda133a42dd43a"], ["version", 3]]
|
280567
|
+
Binary data inserted for `string` type on column `uuid`
|
280568
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "6948135c4564f32e88fddd8f65bda133a42dd43a"]]
|
280569
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280570
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280571
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280572
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
280573
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
280574
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
280575
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280576
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280577
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280578
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280579
|
+
Binary data inserted for `string` type on column `uuid`
|
280580
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9fa04837d390d0284e0a94717b13c985b396d340"], ["version", 2]]
|
280581
|
+
Binary data inserted for `string` type on column `uuid`
|
280582
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9fa04837d390d0284e0a94717b13c985b396d340"]]
|
280583
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280584
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280585
|
+
Binary data inserted for `string` type on column `uuid`
|
280586
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "d6c5127c03f431dc3905513abb8ff8be9b396efd"], ["version", 2]]
|
280587
|
+
Binary data inserted for `string` type on column `code`
|
280588
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "d6c5127c03f431dc3905513abb8ff8be9b396efd"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280589
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280590
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280591
|
+
Binary data inserted for `string` type on column `uuid`
|
280592
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "9fa04837d390d0284e0a94717b13c985b396d340"], ["version", 3]]
|
280593
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:33:49.088566' WHERE "products"."id" = 311
|
280594
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280595
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280596
|
+
Binary data inserted for `string` type on column `uuid`
|
280597
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "d6c5127c03f431dc3905513abb8ff8be9b396efd"], ["version", 3]]
|
280598
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 302]]
|
280599
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280600
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280601
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280602
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280603
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280604
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280605
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280606
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280607
|
+
Binary data inserted for `string` type on column `uuid`
|
280608
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "750368d0e438340220aa2ece2b671a71d16825a2"], ["version", 2]]
|
280609
|
+
Binary data inserted for `string` type on column `uuid`
|
280610
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "750368d0e438340220aa2ece2b671a71d16825a2"]]
|
280611
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280612
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280613
|
+
Binary data inserted for `string` type on column `uuid`
|
280614
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "2bc78186e6b913377a571f9e06e63eefc169aff7"], ["version", 2]]
|
280615
|
+
Binary data inserted for `string` type on column `code`
|
280616
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "2bc78186e6b913377a571f9e06e63eefc169aff7"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280617
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280618
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280619
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280620
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280621
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280622
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280623
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280624
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280625
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280626
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280627
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280628
|
+
Binary data inserted for `string` type on column `uuid`
|
280629
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "5a813ece608eac00cf4a017210e48f72781ef3fe"], ["version", 2]]
|
280630
|
+
Binary data inserted for `string` type on column `uuid`
|
280631
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "5a813ece608eac00cf4a017210e48f72781ef3fe"]]
|
280632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280634
|
+
Binary data inserted for `string` type on column `uuid`
|
280635
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "f3e0d497266242aa68b8021332e8304ee04096fb"], ["version", 2]]
|
280636
|
+
Binary data inserted for `string` type on column `code`
|
280637
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "f3e0d497266242aa68b8021332e8304ee04096fb"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280638
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280639
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280640
|
+
[1m[35mProduct Load (0.2ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = '5a813ece608eac00cf4a017210e48f72781ef3fe' LIMIT 1
|
280641
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280642
|
+
[1m[35mCheese Load (0.2ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'f3e0d497266242aa68b8021332e8304ee04096fb' LIMIT 1
|
280643
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280644
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280645
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280646
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
280647
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280648
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280649
|
+
Binary data inserted for `string` type on column `uuid`
|
280650
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "587111f7fe876c9b97167adce171105a47036bf6"], ["version", 2]]
|
280651
|
+
Binary data inserted for `string` type on column `code`
|
280652
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "587111f7fe876c9b97167adce171105a47036bf6"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280653
|
+
[1m[36m (25.5ms)[0m [1mcommit transaction[0m
|
280654
|
+
[1m[35mTraka::Change Load (0.5ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280655
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280656
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280657
|
+
[1m[36mSQL (0.4ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 904]]
|
280658
|
+
[1m[35m (24.3ms)[0m commit transaction
|
280659
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
280660
|
+
Binary data inserted for `string` type on column `uuid`
|
280661
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0ccea3d4486c786b0b8aa46c10a61b6bae42d939"], ["version", 2]]
|
280662
|
+
Binary data inserted for `string` type on column `code`
|
280663
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "0ccea3d4486c786b0b8aa46c10a61b6bae42d939"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280664
|
+
[1m[35m (38.3ms)[0m commit transaction
|
280665
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280666
|
+
Binary data inserted for `string` type on column `uuid`
|
280667
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "0ccea3d4486c786b0b8aa46c10a61b6bae42d939"], ["version", 2]]
|
280668
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 303]]
|
280669
|
+
[1m[35m (10.3ms)[0m commit transaction
|
280670
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280671
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280673
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 905]]
|
280674
|
+
[1m[36m (24.6ms)[0m [1mcommit transaction[0m
|
280675
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280676
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 906]]
|
280677
|
+
[1m[35m (10.5ms)[0m commit transaction
|
280678
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280679
|
+
Binary data inserted for `string` type on column `uuid`
|
280680
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "a02dcc42c28568bf27ab8240db113bbd9a12d7ea"], ["version", 2]]
|
280681
|
+
Binary data inserted for `string` type on column `code`
|
280682
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "a02dcc42c28568bf27ab8240db113bbd9a12d7ea"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280683
|
+
[1m[35m (13.5ms)[0m commit transaction
|
280684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280685
|
+
Binary data inserted for `string` type on column `uuid`
|
280686
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "a02dcc42c28568bf27ab8240db113bbd9a12d7ea"], ["version", 2]]
|
280687
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:33:49.304406' WHERE "cheeses"."id" = 304[0m
|
280688
|
+
[1m[35m (7.7ms)[0m commit transaction
|
280689
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280690
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280691
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280692
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 907]]
|
280693
|
+
[1m[36m (8.7ms)[0m [1mcommit transaction[0m
|
280694
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280695
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 908]]
|
280696
|
+
[1m[35m (8.2ms)[0m commit transaction
|
280697
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280698
|
+
Binary data inserted for `string` type on column `uuid`
|
280699
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "afe556e7e60f71d9b946a8dc4d0d58ae3133486a"], ["version", 2]]
|
280700
|
+
Binary data inserted for `string` type on column `code`
|
280701
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "afe556e7e60f71d9b946a8dc4d0d58ae3133486a"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00]]
|
280702
|
+
[1m[35m (30.9ms)[0m commit transaction
|
280703
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280704
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280705
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 909]]
|
280706
|
+
[1m[35m (38.4ms)[0m commit transaction
|
280707
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280708
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280709
|
+
Binary data inserted for `string` type on column `uuid`
|
280710
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "aa9bd36f7de864d96a937d56b112fbf48caf8c94"], ["version", 2]]
|
280711
|
+
Binary data inserted for `string` type on column `uuid`
|
280712
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "aa9bd36f7de864d96a937d56b112fbf48caf8c94"]]
|
280713
|
+
[1m[36m (8.4ms)[0m [1mcommit transaction[0m
|
280714
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280715
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280716
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280717
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 910]]
|
280718
|
+
[1m[35m (27.8ms)[0m commit transaction
|
280719
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280720
|
+
Binary data inserted for `string` type on column `uuid`
|
280721
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "b71a2ffb40fdab1e8092eae381245330d7b2cda3"], ["version", 2]]
|
280722
|
+
Binary data inserted for `string` type on column `uuid`
|
280723
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "b71a2ffb40fdab1e8092eae381245330d7b2cda3"]]
|
280724
|
+
[1m[35m (11.0ms)[0m commit transaction
|
280725
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280726
|
+
Binary data inserted for `string` type on column `uuid`
|
280727
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "b71a2ffb40fdab1e8092eae381245330d7b2cda3"], ["version", 2]]
|
280728
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 312]]
|
280729
|
+
[1m[35m (9.8ms)[0m commit transaction
|
280730
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280731
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280732
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
280733
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 911]]
|
280734
|
+
[1m[36m (36.5ms)[0m [1mcommit transaction[0m
|
280735
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280736
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 912]]
|
280737
|
+
[1m[35m (9.4ms)[0m commit transaction
|
280738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280739
|
+
Binary data inserted for `string` type on column `uuid`
|
280740
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "7f786b2610c5069b8463f40754a562aae956b210"], ["version", 2]]
|
280741
|
+
Binary data inserted for `string` type on column `uuid`
|
280742
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "7f786b2610c5069b8463f40754a562aae956b210"]]
|
280743
|
+
[1m[35m (9.6ms)[0m commit transaction
|
280744
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280745
|
+
Binary data inserted for `string` type on column `uuid`
|
280746
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "7f786b2610c5069b8463f40754a562aae956b210"], ["version", 2]]
|
280747
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:33:49.565011' WHERE "products"."id" = 313[0m
|
280748
|
+
[1m[35m (35.8ms)[0m commit transaction
|
280749
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280750
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280751
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280752
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 913]]
|
280753
|
+
[1m[36m (11.3ms)[0m [1mcommit transaction[0m
|
280754
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280755
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 914]]
|
280756
|
+
[1m[35m (10.7ms)[0m commit transaction
|
280757
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280758
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280759
|
+
Binary data inserted for `string` type on column `uuid`
|
280760
|
+
[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", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "e2a2397a070c2fc450b93431adf05f7690975932"], ["version", 2]]
|
280761
|
+
Binary data inserted for `string` type on column `uuid`
|
280762
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:33:49 UTC +00:00], ["uuid", "e2a2397a070c2fc450b93431adf05f7690975932"]]
|
280763
|
+
[1m[36m (10.0ms)[0m [1mcommit transaction[0m
|
280764
|
+
[1m[35m (0.2ms)[0m begin transaction
|
280765
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280766
|
+
Connecting to database specified by database.yml
|
280767
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280768
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280769
|
+
[1m[36mSQL (2.7ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 915]]
|
280770
|
+
[1m[35m (21.5ms)[0m commit transaction
|
280771
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280772
|
+
Binary data inserted for `string` type on column `uuid`
|
280773
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "2df83f6b89893495c61f2cc7ead935e18c6aa399"], ["version", 2]]
|
280774
|
+
Binary data inserted for `string` type on column `code`
|
280775
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "2df83f6b89893495c61f2cc7ead935e18c6aa399"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
|
280776
|
+
[1m[35m (18.7ms)[0m commit transaction
|
280777
|
+
[1m[36mTraka::Change Load (0.5ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280778
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280779
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280780
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 916]]
|
280781
|
+
[1m[36m (7.5ms)[0m [1mcommit transaction[0m
|
280782
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280783
|
+
Binary data inserted for `string` type on column `uuid`
|
280784
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "aeef38001fa478a497ab9ba91af318d55b481d9f"], ["version", 2]]
|
280785
|
+
Binary data inserted for `string` type on column `code`
|
280786
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "aeef38001fa478a497ab9ba91af318d55b481d9f"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
|
280787
|
+
[1m[36m (9.4ms)[0m [1mcommit transaction[0m
|
280788
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280789
|
+
Binary data inserted for `string` type on column `uuid`
|
280790
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "aeef38001fa478a497ab9ba91af318d55b481d9f"], ["version", 2]]
|
280791
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 307]]
|
280792
|
+
[1m[36m (10.9ms)[0m [1mcommit transaction[0m
|
280793
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280794
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280795
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280796
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 917]]
|
280797
|
+
[1m[35m (15.7ms)[0m commit transaction
|
280798
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280799
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 918]]
|
280800
|
+
[1m[36m (58.7ms)[0m [1mcommit transaction[0m
|
280801
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280802
|
+
Binary data inserted for `string` type on column `uuid`
|
280803
|
+
[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", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "685be57c08377c4da7a7b38d13a5c62c83ab763a"], ["version", 2]]
|
280804
|
+
Binary data inserted for `string` type on column `code`
|
280805
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "685be57c08377c4da7a7b38d13a5c62c83ab763a"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
|
280806
|
+
[1m[36m (12.4ms)[0m [1mcommit transaction[0m
|
280807
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280808
|
+
Binary data inserted for `string` type on column `uuid`
|
280809
|
+
[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", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "685be57c08377c4da7a7b38d13a5c62c83ab763a"], ["version", 2]]
|
280810
|
+
[1m[35m (0.3ms)[0m UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:35:18.776697' WHERE "cheeses"."id" = 308
|
280811
|
+
[1m[36m (36.0ms)[0m [1mcommit transaction[0m
|
280812
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280813
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280814
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280815
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 919]]
|
280816
|
+
[1m[35m (29.5ms)[0m commit transaction
|
280817
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280818
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 920]]
|
280819
|
+
[1m[36m (8.1ms)[0m [1mcommit transaction[0m
|
280820
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280821
|
+
Binary data inserted for `string` type on column `uuid`
|
280822
|
+
[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", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "402074042df68e5b8ac02febf133f0d5b2ff416b"], ["version", 2]]
|
280823
|
+
Binary data inserted for `string` type on column `code`
|
280824
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "402074042df68e5b8ac02febf133f0d5b2ff416b"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00]]
|
280825
|
+
[1m[36m (25.7ms)[0m [1mcommit transaction[0m
|
280826
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280827
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280828
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 921]]
|
280829
|
+
[1m[36m (8.7ms)[0m [1mcommit transaction[0m
|
280830
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280831
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280832
|
+
Binary data inserted for `string` type on column `uuid`
|
280833
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "a540ffb8ebf9cd5c0b9ce5bf1e3c4a5d5a5e9b78"], ["version", 2]]
|
280834
|
+
Binary data inserted for `string` type on column `uuid`
|
280835
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "a540ffb8ebf9cd5c0b9ce5bf1e3c4a5d5a5e9b78"]]
|
280836
|
+
[1m[35m (10.8ms)[0m commit transaction
|
280837
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
280838
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280839
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280840
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 922]]
|
280841
|
+
[1m[36m (32.2ms)[0m [1mcommit transaction[0m
|
280842
|
+
[1m[35m (0.2ms)[0m begin transaction
|
280843
|
+
Binary data inserted for `string` type on column `uuid`
|
280844
|
+
[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", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "873ae41ed743984cba9c810bb195285ce12e5587"], ["version", 2]]
|
280845
|
+
Binary data inserted for `string` type on column `uuid`
|
280846
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "873ae41ed743984cba9c810bb195285ce12e5587"]]
|
280847
|
+
[1m[36m (12.9ms)[0m [1mcommit transaction[0m
|
280848
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280849
|
+
Binary data inserted for `string` type on column `uuid`
|
280850
|
+
[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", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:18 UTC +00:00], ["uuid", "873ae41ed743984cba9c810bb195285ce12e5587"], ["version", 2]]
|
280851
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 316]]
|
280852
|
+
[1m[36m (8.9ms)[0m [1mcommit transaction[0m
|
280853
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280854
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280855
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280856
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 923]]
|
280857
|
+
[1m[35m (7.8ms)[0m commit transaction
|
280858
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280859
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 924]]
|
280860
|
+
[1m[36m (48.3ms)[0m [1mcommit transaction[0m
|
280861
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280862
|
+
Binary data inserted for `string` type on column `uuid`
|
280863
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "975234d0fa447b1b3d704966618e2f7f0c09c402"], ["version", 2]]
|
280864
|
+
Binary data inserted for `string` type on column `uuid`
|
280865
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "975234d0fa447b1b3d704966618e2f7f0c09c402"]]
|
280866
|
+
[1m[36m (26.8ms)[0m [1mcommit transaction[0m
|
280867
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280868
|
+
Binary data inserted for `string` type on column `uuid`
|
280869
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "975234d0fa447b1b3d704966618e2f7f0c09c402"], ["version", 2]]
|
280870
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:35:19.110765' WHERE "products"."id" = 317
|
280871
|
+
[1m[36m (9.2ms)[0m [1mcommit transaction[0m
|
280872
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
280873
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280874
|
+
[1m[35m (0.1ms)[0m begin transaction
|
280875
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 925]]
|
280876
|
+
[1m[35m (19.9ms)[0m commit transaction
|
280877
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280878
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 926]]
|
280879
|
+
[1m[36m (30.5ms)[0m [1mcommit transaction[0m
|
280880
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280881
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280882
|
+
Binary data inserted for `string` type on column `uuid`
|
280883
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ebf8052c82b879bf9adbf5b23b6fedba79476e31"], ["version", 2]]
|
280884
|
+
Binary data inserted for `string` type on column `uuid`
|
280885
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ebf8052c82b879bf9adbf5b23b6fedba79476e31"]]
|
280886
|
+
[1m[35m (11.5ms)[0m commit transaction
|
280887
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
280888
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280889
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280890
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
|
280891
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280892
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280893
|
+
Binary data inserted for `string` type on column `uuid`
|
280894
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "92b33223c0dadc6dbc7c0e1a92e252ac18fe50aa"], ["version", 2]]
|
280895
|
+
Binary data inserted for `string` type on column `uuid`
|
280896
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "92b33223c0dadc6dbc7c0e1a92e252ac18fe50aa"]]
|
280897
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280898
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
280899
|
+
Binary data inserted for `string` type on column `uuid`
|
280900
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a19bde847c451664ab2927b4c51320b4fb9e01e0"], ["version", 2]]
|
280901
|
+
Binary data inserted for `string` type on column `code`
|
280902
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a19bde847c451664ab2927b4c51320b4fb9e01e0"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
280903
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280904
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280905
|
+
Binary data inserted for `string` type on column `uuid`
|
280906
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "92b33223c0dadc6dbc7c0e1a92e252ac18fe50aa"], ["version", 2]]
|
280907
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 319]]
|
280908
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280909
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280910
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280911
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280912
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
280913
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280914
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280916
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
280917
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280918
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280919
|
+
Binary data inserted for `string` type on column `uuid`
|
280920
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"], ["version", 2]]
|
280921
|
+
Binary data inserted for `string` type on column `uuid`
|
280922
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"]]
|
280923
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280924
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280925
|
+
Binary data inserted for `string` type on column `uuid`
|
280926
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "b03bb660566156b0a2975eee594649776c28ba2a"], ["version", 2]]
|
280927
|
+
Binary data inserted for `string` type on column `code`
|
280928
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "b03bb660566156b0a2975eee594649776c28ba2a"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
280929
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280930
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280931
|
+
Binary data inserted for `string` type on column `uuid`
|
280932
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"], ["version", 2]]
|
280933
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.217262' WHERE "products"."id" = 319[0m
|
280934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280935
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280936
|
+
Binary data inserted for `string` type on column `uuid`
|
280937
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2d6097ef51748fb18295eba131d2438cfaf10672"], ["version", 2]]
|
280938
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:35:19.219140' WHERE "products"."id" = 319[0m
|
280939
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280940
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280941
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
280942
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
280943
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280944
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280945
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
280946
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280947
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
|
280948
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280949
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280950
|
+
Binary data inserted for `string` type on column `uuid`
|
280951
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"], ["version", 2]]
|
280952
|
+
Binary data inserted for `string` type on column `uuid`
|
280953
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"]]
|
280954
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280955
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280956
|
+
Binary data inserted for `string` type on column `uuid`
|
280957
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a726cea40b30845d0d7b33224c8a715eeb9f9041"], ["version", 2]]
|
280958
|
+
Binary data inserted for `string` type on column `code`
|
280959
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "a726cea40b30845d0d7b33224c8a715eeb9f9041"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
280960
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280961
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280962
|
+
Binary data inserted for `string` type on column `uuid`
|
280963
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"], ["version", 3]]
|
280964
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.227934' WHERE "products"."id" = 319
|
280965
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280966
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280967
|
+
Binary data inserted for `string` type on column `uuid`
|
280968
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a726cea40b30845d0d7b33224c8a715eeb9f9041"], ["version", 3]]
|
280969
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.229596' WHERE "cheeses"."id" = 310
|
280970
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280971
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280972
|
+
Binary data inserted for `string` type on column `uuid`
|
280973
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "2858c361db2be95b43194fb30ea9a2f2473fe819"], ["version", 3]]
|
280974
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 319]]
|
280975
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
280976
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280977
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
280978
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
280979
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
280980
|
+
[1m[35m (0.0ms)[0m begin transaction
|
280981
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
280982
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
280983
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
280984
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280985
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280986
|
+
Binary data inserted for `string` type on column `uuid`
|
280987
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 2]]
|
280988
|
+
Binary data inserted for `string` type on column `uuid`
|
280989
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"]]
|
280990
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280991
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280992
|
+
Binary data inserted for `string` type on column `uuid`
|
280993
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "273e137cfb24dc82bd4a47282b2dab9b28151b5a"], ["version", 2]]
|
280994
|
+
Binary data inserted for `string` type on column `code`
|
280995
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "273e137cfb24dc82bd4a47282b2dab9b28151b5a"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
280996
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
280997
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280998
|
+
Binary data inserted for `string` type on column `uuid`
|
280999
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 3]]
|
281000
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.239054' WHERE "products"."id" = 319[0m
|
281001
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281003
|
+
Binary data inserted for `string` type on column `uuid`
|
281004
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 3]]
|
281005
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:35:19.241098' WHERE "products"."id" = 319[0m
|
281006
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281007
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281008
|
+
Binary data inserted for `string` type on column `uuid`
|
281009
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "0bb8541b88d47a64e5f2d666019933d4baaae609"], ["version", 3]]
|
281010
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:35:19.242911' WHERE "products"."id" = 319[0m
|
281011
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281012
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281013
|
+
Binary data inserted for `string` type on column `uuid`
|
281014
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "273e137cfb24dc82bd4a47282b2dab9b28151b5a"], ["version", 3]]
|
281015
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.244632' WHERE "cheeses"."id" = 310[0m
|
281016
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281017
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281018
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281019
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281020
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281021
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281022
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281024
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
|
281025
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281026
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281027
|
+
Binary data inserted for `string` type on column `uuid`
|
281028
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
|
281029
|
+
Binary data inserted for `string` type on column `uuid`
|
281030
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"]]
|
281031
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281032
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281033
|
+
Binary data inserted for `string` type on column `uuid`
|
281034
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "18030c2e5e779924e5fe315409d86e917022194a"], ["version", 2]]
|
281035
|
+
Binary data inserted for `string` type on column `code`
|
281036
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "18030c2e5e779924e5fe315409d86e917022194a"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
281037
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281039
|
+
Binary data inserted for `string` type on column `uuid`
|
281040
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
|
281041
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.253414' WHERE "products"."id" = 319
|
281042
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281043
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281044
|
+
Binary data inserted for `string` type on column `uuid`
|
281045
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
|
281046
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:35:19.254912' WHERE "products"."id" = 319
|
281047
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281048
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281049
|
+
Binary data inserted for `string` type on column `uuid`
|
281050
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "8d2f2bd5f6b8b49590838807f759c7fb9bc9a307"], ["version", 2]]
|
281051
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 319]]
|
281052
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281053
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281054
|
+
Binary data inserted for `string` type on column `uuid`
|
281055
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "18030c2e5e779924e5fe315409d86e917022194a"], ["version", 2]]
|
281056
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 310]]
|
281057
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281058
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281059
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281060
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281061
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281062
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281063
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281065
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
281066
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281067
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281068
|
+
Binary data inserted for `string` type on column `uuid`
|
281069
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ff87cce8c7290565d9a30292bac260ee02efcc64"], ["version", 2]]
|
281070
|
+
Binary data inserted for `string` type on column `uuid`
|
281071
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "ff87cce8c7290565d9a30292bac260ee02efcc64"]]
|
281072
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281073
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281074
|
+
Binary data inserted for `string` type on column `uuid`
|
281075
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "82fe535616eeeff2d258523c3191c7ffbfc40853"], ["version", 2]]
|
281076
|
+
Binary data inserted for `string` type on column `code`
|
281077
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "82fe535616eeeff2d258523c3191c7ffbfc40853"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
281078
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281079
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281080
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281081
|
+
Binary data inserted for `string` type on column `uuid`
|
281082
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "49ee4b966701b76b96451245cb05db00ff41561b"], ["version", 3]]
|
281083
|
+
Binary data inserted for `string` type on column `uuid`
|
281084
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "49ee4b966701b76b96451245cb05db00ff41561b"]]
|
281085
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281086
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281087
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281088
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
281089
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
281090
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
281091
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281092
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281093
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281094
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
281095
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
281096
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281097
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281098
|
+
Binary data inserted for `string` type on column `uuid`
|
281099
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "cb79a983f6d769e7c8207513097eec613d1aec99"], ["version", 2]]
|
281100
|
+
Binary data inserted for `string` type on column `uuid`
|
281101
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "cb79a983f6d769e7c8207513097eec613d1aec99"]]
|
281102
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281103
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281104
|
+
Binary data inserted for `string` type on column `uuid`
|
281105
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "fb1e607fb178ae401c98442a32a798f6c69e591e"], ["version", 2]]
|
281106
|
+
Binary data inserted for `string` type on column `code`
|
281107
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "fb1e607fb178ae401c98442a32a798f6c69e591e"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
281108
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281109
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281110
|
+
Binary data inserted for `string` type on column `uuid`
|
281111
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "cb79a983f6d769e7c8207513097eec613d1aec99"], ["version", 3]]
|
281112
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:35:19.277146' WHERE "products"."id" = 319[0m
|
281113
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281114
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281115
|
+
Binary data inserted for `string` type on column `uuid`
|
281116
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "fb1e607fb178ae401c98442a32a798f6c69e591e"], ["version", 3]]
|
281117
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 310]]
|
281118
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281119
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281120
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281121
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281124
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281125
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281126
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 927]]
|
281127
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281128
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281129
|
+
Binary data inserted for `string` type on column `uuid`
|
281130
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a92e07d530972fd65f3a5dd357e14d6a389eed2f"], ["version", 2]]
|
281131
|
+
Binary data inserted for `string` type on column `uuid`
|
281132
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "a92e07d530972fd65f3a5dd357e14d6a389eed2f"]]
|
281133
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281134
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281135
|
+
Binary data inserted for `string` type on column `uuid`
|
281136
|
+
[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", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "b040c95f7f25b4b6acb6afac65a2cde6e7792134"], ["version", 2]]
|
281137
|
+
Binary data inserted for `string` type on column `code`
|
281138
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "b040c95f7f25b4b6acb6afac65a2cde6e7792134"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
281139
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281140
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281141
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281142
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281143
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281144
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281145
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281146
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281147
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
281148
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281149
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281150
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281151
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281152
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281153
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
281154
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281155
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281156
|
+
Binary data inserted for `string` type on column `uuid`
|
281157
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "89a7c1904e1fb98c826992a4af26c36f3e3bb986"], ["version", 2]]
|
281158
|
+
Binary data inserted for `string` type on column `uuid`
|
281159
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "89a7c1904e1fb98c826992a4af26c36f3e3bb986"]]
|
281160
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281161
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281162
|
+
Binary data inserted for `string` type on column `uuid`
|
281163
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["uuid", "acc5879ee425d217f6b1b2a584a9b87d717bd1de"], ["version", 2]]
|
281164
|
+
Binary data inserted for `string` type on column `code`
|
281165
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "acc5879ee425d217f6b1b2a584a9b87d717bd1de"], ["created_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:35:19 UTC +00:00]]
|
281166
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281167
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281168
|
+
[1m[35mProduct Load (0.2ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = '89a7c1904e1fb98c826992a4af26c36f3e3bb986' LIMIT 1
|
281169
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281170
|
+
[1m[35mCheese Load (0.2ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'acc5879ee425d217f6b1b2a584a9b87d717bd1de' LIMIT 1
|
281171
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
281172
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281173
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281174
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281175
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 927]]
|
281176
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
281177
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281178
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281179
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
281180
|
+
Connecting to database specified by database.yml
|
281181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281182
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281184
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281186
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281188
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281190
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281192
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281193
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281194
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281195
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281196
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281197
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281198
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281200
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281202
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281203
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281205
|
+
Connecting to database specified by database.yml
|
281206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281207
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281208
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281211
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281213
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281214
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281215
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281216
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281217
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281218
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281219
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281220
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281221
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281222
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281223
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281224
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281227
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281228
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281229
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281230
|
+
Connecting to database specified by database.yml
|
281231
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281232
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281233
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281234
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281235
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281236
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281237
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281238
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281240
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281241
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281242
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281243
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281244
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281245
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281246
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281247
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281248
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281249
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281250
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281252
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281253
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281254
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281255
|
+
Connecting to database specified by database.yml
|
281256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281259
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281261
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281267
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281273
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281275
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281277
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281279
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281280
|
+
Connecting to database specified by database.yml
|
281281
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
281282
|
+
[1m[35m (20.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
281283
|
+
[1m[36m (23.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
281284
|
+
[1m[35m (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
281285
|
+
Migrating to CreateProducts (20131219051328)
|
281286
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281287
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "uuid" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
281288
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131219051328')[0m
|
281289
|
+
[1m[35m (7.4ms)[0m commit transaction
|
281290
|
+
Migrating to CreateCheeses (20131219051348)
|
281291
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281292
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "cheeses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "code" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
281293
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131219051348')[0m
|
281294
|
+
[1m[35m (9.7ms)[0m commit transaction
|
281295
|
+
Migrating to CreateTrakaChanges (20140102053940)
|
281296
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281297
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "traka_changes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "klass" varchar(255), "uuid" varchar(255), "action_type" varchar(255), "version" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
281298
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20140102053940')[0m
|
281299
|
+
[1m[35m (9.3ms)[0m commit transaction
|
281300
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
281301
|
+
Connecting to database specified by database.yml
|
281302
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281303
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281304
|
+
Binary data inserted for `string` type on column `uuid`
|
281305
|
+
[1m[36mSQL (3.1ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["uuid", "e458c50e2c31d6831789fa728326660a4bed45a1"], ["version", 2]]
|
281306
|
+
Binary data inserted for `string` type on column `code`
|
281307
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "e458c50e2c31d6831789fa728326660a4bed45a1"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00]]
|
281308
|
+
[1m[36m (26.2ms)[0m [1mcommit transaction[0m
|
281309
|
+
[1m[35mTraka::Change Load (0.5ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
281310
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281311
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281312
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 1]]
|
281313
|
+
[1m[35m (21.8ms)[0m commit transaction
|
281314
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281315
|
+
Binary data inserted for `string` type on column `uuid`
|
281316
|
+
[1m[35mSQL (24.5ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["uuid", "00e95b8797deab4a1c92f520314327f639c4785c"], ["version", 2]]
|
281317
|
+
Binary data inserted for `string` type on column `code`
|
281318
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "00e95b8797deab4a1c92f520314327f639c4785c"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00]]
|
281319
|
+
[1m[35m (27.8ms)[0m commit transaction
|
281320
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281321
|
+
Binary data inserted for `string` type on column `uuid`
|
281322
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:34 UTC +00:00], ["uuid", "00e95b8797deab4a1c92f520314327f639c4785c"], ["version", 2]]
|
281323
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 2]]
|
281324
|
+
[1m[35m (11.1ms)[0m commit transaction
|
281325
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
281326
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281327
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281328
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 2]]
|
281329
|
+
[1m[36m (23.9ms)[0m [1mcommit transaction[0m
|
281330
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281331
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 3]]
|
281332
|
+
[1m[35m (10.8ms)[0m commit transaction
|
281333
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281334
|
+
Binary data inserted for `string` type on column `uuid`
|
281335
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "41dd56e75c03e8d2bbff431f527af4a744951bfd"], ["version", 2]]
|
281336
|
+
Binary data inserted for `string` type on column `code`
|
281337
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "41dd56e75c03e8d2bbff431f527af4a744951bfd"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281338
|
+
[1m[35m (31.2ms)[0m commit transaction
|
281339
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281340
|
+
Binary data inserted for `string` type on column `uuid`
|
281341
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "41dd56e75c03e8d2bbff431f527af4a744951bfd"], ["version", 2]]
|
281342
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:45:35.052272' WHERE "cheeses"."id" = 3[0m
|
281343
|
+
[1m[35m (18.5ms)[0m commit transaction
|
281344
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
281345
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281346
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281347
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 4]]
|
281348
|
+
[1m[36m (8.6ms)[0m [1mcommit transaction[0m
|
281349
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281350
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 5]]
|
281351
|
+
[1m[35m (7.7ms)[0m commit transaction
|
281352
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281353
|
+
Binary data inserted for `string` type on column `uuid`
|
281354
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "45325abbf534993c8f5b49fd48dea0dd7572501f"], ["version", 2]]
|
281355
|
+
Binary data inserted for `string` type on column `code`
|
281356
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "45325abbf534993c8f5b49fd48dea0dd7572501f"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281357
|
+
[1m[35m (8.0ms)[0m commit transaction
|
281358
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281359
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281360
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 6]]
|
281361
|
+
[1m[35m (9.4ms)[0m commit transaction
|
281362
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281363
|
+
[1m[35m (0.2ms)[0m begin transaction
|
281364
|
+
Binary data inserted for `string` type on column `uuid`
|
281365
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "4cb43d3b22f0cdd2d50fe6749d50ab6baac52982"], ["version", 2]]
|
281366
|
+
Binary data inserted for `string` type on column `uuid`
|
281367
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "4cb43d3b22f0cdd2d50fe6749d50ab6baac52982"]]
|
281368
|
+
[1m[36m (8.3ms)[0m [1mcommit transaction[0m
|
281369
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
281370
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281371
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281372
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 7]]
|
281373
|
+
[1m[35m (32.5ms)[0m commit transaction
|
281374
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281375
|
+
Binary data inserted for `string` type on column `uuid`
|
281376
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a60cd8dc739c1ded35967066a2112d7a199abf20"], ["version", 2]]
|
281377
|
+
Binary data inserted for `string` type on column `uuid`
|
281378
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a60cd8dc739c1ded35967066a2112d7a199abf20"]]
|
281379
|
+
[1m[35m (31.9ms)[0m commit transaction
|
281380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281381
|
+
Binary data inserted for `string` type on column `uuid`
|
281382
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a60cd8dc739c1ded35967066a2112d7a199abf20"], ["version", 2]]
|
281383
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 2]]
|
281384
|
+
[1m[35m (38.0ms)[0m commit transaction
|
281385
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
281386
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281388
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 8]]
|
281389
|
+
[1m[36m (23.1ms)[0m [1mcommit transaction[0m
|
281390
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281391
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 9]]
|
281392
|
+
[1m[35m (18.6ms)[0m commit transaction
|
281393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281394
|
+
Binary data inserted for `string` type on column `uuid`
|
281395
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "f76999cc881db3a2765ae4a4630e479faae276dd"], ["version", 2]]
|
281396
|
+
Binary data inserted for `string` type on column `uuid`
|
281397
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "f76999cc881db3a2765ae4a4630e479faae276dd"]]
|
281398
|
+
[1m[35m (8.5ms)[0m commit transaction
|
281399
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281400
|
+
Binary data inserted for `string` type on column `uuid`
|
281401
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "f76999cc881db3a2765ae4a4630e479faae276dd"], ["version", 2]]
|
281402
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:45:35.343358' WHERE "products"."id" = 3[0m
|
281403
|
+
[1m[35m (20.6ms)[0m commit transaction
|
281404
|
+
[1m[36mTraka::Change Load (0.4ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
281405
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281406
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281407
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 10]]
|
281408
|
+
[1m[36m (18.0ms)[0m [1mcommit transaction[0m
|
281409
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281410
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 11]]
|
281411
|
+
[1m[35m (104.0ms)[0m commit transaction
|
281412
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281413
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281414
|
+
Binary data inserted for `string` type on column `uuid`
|
281415
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "618642cad406e806bb6a0a122a388f571633a422"], ["version", 2]]
|
281416
|
+
Binary data inserted for `string` type on column `uuid`
|
281417
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "618642cad406e806bb6a0a122a388f571633a422"]]
|
281418
|
+
[1m[36m (6.7ms)[0m [1mcommit transaction[0m
|
281419
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281420
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281421
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281422
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 12]]
|
281423
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281424
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281425
|
+
Binary data inserted for `string` type on column `uuid`
|
281426
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a23ab455a85142673f1c073bc9aa42fc18b835ad"], ["version", 2]]
|
281427
|
+
Binary data inserted for `string` type on column `uuid`
|
281428
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a23ab455a85142673f1c073bc9aa42fc18b835ad"]]
|
281429
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
281430
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
281431
|
+
Binary data inserted for `string` type on column `uuid`
|
281432
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "945840b2d2b348eb6ad96f9c0ae8301cf5ea97d1"], ["version", 2]]
|
281433
|
+
Binary data inserted for `string` type on column `code`
|
281434
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "945840b2d2b348eb6ad96f9c0ae8301cf5ea97d1"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281435
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
281436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281437
|
+
Binary data inserted for `string` type on column `uuid`
|
281438
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a23ab455a85142673f1c073bc9aa42fc18b835ad"], ["version", 2]]
|
281439
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 5]]
|
281440
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
281441
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281442
|
+
[1m[35mTraka::Change Load (0.2ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281443
|
+
[1m[36mTraka::Change Load (0.2ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281444
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281445
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281446
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281448
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281449
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281450
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281451
|
+
Binary data inserted for `string` type on column `uuid`
|
281452
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"], ["version", 2]]
|
281453
|
+
Binary data inserted for `string` type on column `uuid`
|
281454
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"]]
|
281455
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281456
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281457
|
+
Binary data inserted for `string` type on column `uuid`
|
281458
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "79df6c39f09752c60677d65fb3f9dcc2965c6b66"], ["version", 2]]
|
281459
|
+
Binary data inserted for `string` type on column `code`
|
281460
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "79df6c39f09752c60677d65fb3f9dcc2965c6b66"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281461
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281462
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281463
|
+
Binary data inserted for `string` type on column `uuid`
|
281464
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"], ["version", 2]]
|
281465
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.533612' WHERE "products"."id" = 5
|
281466
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281467
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281468
|
+
Binary data inserted for `string` type on column `uuid`
|
281469
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17ac27c732a787c9ababe90cf99a76fc9d6c75f5"], ["version", 2]]
|
281470
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:45:35.535182' WHERE "products"."id" = 5
|
281471
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281472
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281473
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281474
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281475
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281476
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281477
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281478
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281479
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 12]]
|
281480
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281481
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281482
|
+
Binary data inserted for `string` type on column `uuid`
|
281483
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"], ["version", 2]]
|
281484
|
+
Binary data inserted for `string` type on column `uuid`
|
281485
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"]]
|
281486
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281488
|
+
Binary data inserted for `string` type on column `uuid`
|
281489
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "619f795f6805aa2b6723aaf6cc158e1df06c6956"], ["version", 2]]
|
281490
|
+
Binary data inserted for `string` type on column `code`
|
281491
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "619f795f6805aa2b6723aaf6cc158e1df06c6956"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281492
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281493
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281494
|
+
Binary data inserted for `string` type on column `uuid`
|
281495
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"], ["version", 3]]
|
281496
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.543756' WHERE "products"."id" = 5[0m
|
281497
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281498
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281499
|
+
Binary data inserted for `string` type on column `uuid`
|
281500
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "619f795f6805aa2b6723aaf6cc158e1df06c6956"], ["version", 3]]
|
281501
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.545327' WHERE "cheeses"."id" = 5[0m
|
281502
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281503
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281504
|
+
Binary data inserted for `string` type on column `uuid`
|
281505
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "27019ead02aec8f36552e1f1ced3a503da1bbd10"], ["version", 3]]
|
281506
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 5]]
|
281507
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281508
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281509
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281510
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281511
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281513
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281514
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281515
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281516
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281518
|
+
Binary data inserted for `string` type on column `uuid`
|
281519
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 2]]
|
281520
|
+
Binary data inserted for `string` type on column `uuid`
|
281521
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"]]
|
281522
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281523
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281524
|
+
Binary data inserted for `string` type on column `uuid`
|
281525
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "d597eec4ff515584bafa15247010ef93626b945b"], ["version", 2]]
|
281526
|
+
Binary data inserted for `string` type on column `code`
|
281527
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "d597eec4ff515584bafa15247010ef93626b945b"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281528
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281530
|
+
Binary data inserted for `string` type on column `uuid`
|
281531
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 3]]
|
281532
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.555214' WHERE "products"."id" = 5
|
281533
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281534
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281535
|
+
Binary data inserted for `string` type on column `uuid`
|
281536
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 3]]
|
281537
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:45:35.556977' WHERE "products"."id" = 5
|
281538
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281539
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281540
|
+
Binary data inserted for `string` type on column `uuid`
|
281541
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "6209ac382bb3d8f1f39c1c90332c6048c34d4094"], ["version", 3]]
|
281542
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:45:35.558638' WHERE "products"."id" = 5
|
281543
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281544
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281545
|
+
Binary data inserted for `string` type on column `uuid`
|
281546
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "d597eec4ff515584bafa15247010ef93626b945b"], ["version", 3]]
|
281547
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.560266' WHERE "cheeses"."id" = 5
|
281548
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281549
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281550
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281551
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281552
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281553
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281554
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281556
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 12]]
|
281557
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281558
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281559
|
+
Binary data inserted for `string` type on column `uuid`
|
281560
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
|
281561
|
+
Binary data inserted for `string` type on column `uuid`
|
281562
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"]]
|
281563
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281565
|
+
Binary data inserted for `string` type on column `uuid`
|
281566
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "494e171932cdf7a435627eca1148f24db49eaf66"], ["version", 2]]
|
281567
|
+
Binary data inserted for `string` type on column `code`
|
281568
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "494e171932cdf7a435627eca1148f24db49eaf66"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281569
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281570
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281571
|
+
Binary data inserted for `string` type on column `uuid`
|
281572
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
|
281573
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.569200' WHERE "products"."id" = 5[0m
|
281574
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281575
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281576
|
+
Binary data inserted for `string` type on column `uuid`
|
281577
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
|
281578
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:45:35.570700' WHERE "products"."id" = 5[0m
|
281579
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281580
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281581
|
+
Binary data inserted for `string` type on column `uuid`
|
281582
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "5dc87b3543cabdd86f5b530ec9d05bf141960096"], ["version", 2]]
|
281583
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "products" WHERE "products"."id" = ?[0m [["id", 5]]
|
281584
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281585
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281586
|
+
Binary data inserted for `string` type on column `uuid`
|
281587
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "494e171932cdf7a435627eca1148f24db49eaf66"], ["version", 2]]
|
281588
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 5]]
|
281589
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281590
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281591
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281592
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281593
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281594
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281595
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281596
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281597
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281598
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281599
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281600
|
+
Binary data inserted for `string` type on column `uuid`
|
281601
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a45c123bf03c613bad665af040d2119143b38050"], ["version", 2]]
|
281602
|
+
Binary data inserted for `string` type on column `uuid`
|
281603
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "a45c123bf03c613bad665af040d2119143b38050"]]
|
281604
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281605
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281606
|
+
Binary data inserted for `string` type on column `uuid`
|
281607
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "bc81fdbe685e6741573aad5d0c755f08305e3f24"], ["version", 2]]
|
281608
|
+
Binary data inserted for `string` type on column `code`
|
281609
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "bc81fdbe685e6741573aad5d0c755f08305e3f24"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281610
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281611
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281612
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281613
|
+
Binary data inserted for `string` type on column `uuid`
|
281614
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "e557dfedff61d2ea262221bafc60d55246f89112"], ["version", 3]]
|
281615
|
+
Binary data inserted for `string` type on column `uuid`
|
281616
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "e557dfedff61d2ea262221bafc60d55246f89112"]]
|
281617
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281618
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281619
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281620
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
281621
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
281622
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
281623
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281624
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281625
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281627
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281628
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281629
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281630
|
+
Binary data inserted for `string` type on column `uuid`
|
281631
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "3449b364072fcf52fd147faf004bad1e0c076f12"], ["version", 2]]
|
281632
|
+
Binary data inserted for `string` type on column `uuid`
|
281633
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "3449b364072fcf52fd147faf004bad1e0c076f12"]]
|
281634
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281636
|
+
Binary data inserted for `string` type on column `uuid`
|
281637
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "b1848beeed9b9200cd32f6443119c2d29c82cd83"], ["version", 2]]
|
281638
|
+
Binary data inserted for `string` type on column `code`
|
281639
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "b1848beeed9b9200cd32f6443119c2d29c82cd83"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281640
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281641
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281642
|
+
Binary data inserted for `string` type on column `uuid`
|
281643
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "3449b364072fcf52fd147faf004bad1e0c076f12"], ["version", 3]]
|
281644
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:45:35.592539' WHERE "products"."id" = 5
|
281645
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281646
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281647
|
+
Binary data inserted for `string` type on column `uuid`
|
281648
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "b1848beeed9b9200cd32f6443119c2d29c82cd83"], ["version", 3]]
|
281649
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 5]]
|
281650
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281651
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281652
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281653
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281654
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281655
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281656
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281657
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281658
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 12]]
|
281659
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281660
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281661
|
+
Binary data inserted for `string` type on column `uuid`
|
281662
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "c381bc827823891cefc4d1fbebeb6eac6cd4fd62"], ["version", 2]]
|
281663
|
+
Binary data inserted for `string` type on column `uuid`
|
281664
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "c381bc827823891cefc4d1fbebeb6eac6cd4fd62"]]
|
281665
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281666
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281667
|
+
Binary data inserted for `string` type on column `uuid`
|
281668
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "17b9220fd405060f7f07a674838f86e4b2400377"], ["version", 2]]
|
281669
|
+
Binary data inserted for `string` type on column `code`
|
281670
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "17b9220fd405060f7f07a674838f86e4b2400377"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281671
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281672
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281673
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281674
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281675
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281676
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281677
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281678
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281679
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281680
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281681
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281683
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281684
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281685
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281686
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281687
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281688
|
+
Binary data inserted for `string` type on column `uuid`
|
281689
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "64823923cfd40120f44b7dae40cba74a8733e241"], ["version", 2]]
|
281690
|
+
Binary data inserted for `string` type on column `uuid`
|
281691
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "64823923cfd40120f44b7dae40cba74a8733e241"]]
|
281692
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281693
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281694
|
+
Binary data inserted for `string` type on column `uuid`
|
281695
|
+
[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", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["uuid", "bc91b12c969141660ef40943755e0dac1c2ad296"], ["version", 2]]
|
281696
|
+
Binary data inserted for `string` type on column `code`
|
281697
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "bc91b12c969141660ef40943755e0dac1c2ad296"], ["created_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:45:35 UTC +00:00]]
|
281698
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281699
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281700
|
+
[1m[36mProduct Load (0.1ms)[0m [1mSELECT "products".* FROM "products" WHERE "products"."uuid" = '64823923cfd40120f44b7dae40cba74a8733e241' LIMIT 1[0m
|
281701
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281702
|
+
[1m[36mCheese Load (0.1ms)[0m [1mSELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'bc91b12c969141660ef40943755e0dac1c2ad296' LIMIT 1[0m
|
281703
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
281704
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281705
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281706
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281707
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 12]]
|
281708
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281709
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281710
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
281711
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
281712
|
+
Connecting to database specified by database.yml
|
281713
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281714
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281715
|
+
[1m[36mSQL (2.7ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 12]]
|
281716
|
+
[1m[35m (16.5ms)[0m commit transaction
|
281717
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281718
|
+
Binary data inserted for `string` type on column `uuid`
|
281719
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "34f5a839697b3a80bf8bf0c4adf6970e7988dd6a"], ["version", 2]]
|
281720
|
+
Binary data inserted for `string` type on column `code`
|
281721
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "34f5a839697b3a80bf8bf0c4adf6970e7988dd6a"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
|
281722
|
+
[1m[35m (30.5ms)[0m commit transaction
|
281723
|
+
[1m[36mTraka::Change Load (0.5ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
281724
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281725
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281726
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 13]]
|
281727
|
+
[1m[36m (8.3ms)[0m [1mcommit transaction[0m
|
281728
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281729
|
+
Binary data inserted for `string` type on column `uuid`
|
281730
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "4b612529cf887c1dbdf090516fc0c7ab586d501d"], ["version", 2]]
|
281731
|
+
Binary data inserted for `string` type on column `code`
|
281732
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "4b612529cf887c1dbdf090516fc0c7ab586d501d"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
|
281733
|
+
[1m[36m (7.0ms)[0m [1mcommit transaction[0m
|
281734
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281735
|
+
Binary data inserted for `string` type on column `uuid`
|
281736
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "4b612529cf887c1dbdf090516fc0c7ab586d501d"], ["version", 2]]
|
281737
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 6]]
|
281738
|
+
[1m[36m (32.8ms)[0m [1mcommit transaction[0m
|
281739
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
281740
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281741
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281742
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 14]]
|
281743
|
+
[1m[35m (31.7ms)[0m commit transaction
|
281744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281745
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 15]]
|
281746
|
+
[1m[36m (31.6ms)[0m [1mcommit transaction[0m
|
281747
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281748
|
+
Binary data inserted for `string` type on column `uuid`
|
281749
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "ecc823dad8f076dcd610be58e15b3a648de634b9"], ["version", 2]]
|
281750
|
+
Binary data inserted for `string` type on column `code`
|
281751
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "ecc823dad8f076dcd610be58e15b3a648de634b9"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
|
281752
|
+
[1m[36m (33.1ms)[0m [1mcommit transaction[0m
|
281753
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281754
|
+
Binary data inserted for `string` type on column `uuid`
|
281755
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?)[0m [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "ecc823dad8f076dcd610be58e15b3a648de634b9"], ["version", 2]]
|
281756
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:46:11.694636' WHERE "cheeses"."id" = 7
|
281757
|
+
[1m[36m (11.1ms)[0m [1mcommit transaction[0m
|
281758
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
281759
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281760
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281761
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 16]]
|
281762
|
+
[1m[35m (33.1ms)[0m commit transaction
|
281763
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281764
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 17]]
|
281765
|
+
[1m[36m (9.7ms)[0m [1mcommit transaction[0m
|
281766
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281767
|
+
Binary data inserted for `string` type on column `uuid`
|
281768
|
+
[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", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "07367640fa45ab4950b3e66c8e19a4e1bcb5e333"], ["version", 2]]
|
281769
|
+
Binary data inserted for `string` type on column `code`
|
281770
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "07367640fa45ab4950b3e66c8e19a4e1bcb5e333"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00]]
|
281771
|
+
[1m[36m (8.3ms)[0m [1mcommit transaction[0m
|
281772
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281773
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281774
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 18]]
|
281775
|
+
[1m[36m (7.8ms)[0m [1mcommit transaction[0m
|
281776
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281777
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
281778
|
+
Binary data inserted for `string` type on column `uuid`
|
281779
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "fd73a8d0e3e184d08467142e7e1a994be8f5813b"], ["version", 2]]
|
281780
|
+
Binary data inserted for `string` type on column `uuid`
|
281781
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "fd73a8d0e3e184d08467142e7e1a994be8f5813b"]]
|
281782
|
+
[1m[35m (8.2ms)[0m commit transaction
|
281783
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1[0m
|
281784
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281785
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281786
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 19]]
|
281787
|
+
[1m[36m (10.1ms)[0m [1mcommit transaction[0m
|
281788
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281789
|
+
Binary data inserted for `string` type on column `uuid`
|
281790
|
+
[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", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "7746cfa4279f9b40efbf4dbe963cb353d00373be"], ["version", 2]]
|
281791
|
+
Binary data inserted for `string` type on column `uuid`
|
281792
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "7746cfa4279f9b40efbf4dbe963cb353d00373be"]]
|
281793
|
+
[1m[36m (8.2ms)[0m [1mcommit transaction[0m
|
281794
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281795
|
+
Binary data inserted for `string` type on column `uuid`
|
281796
|
+
[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", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "7746cfa4279f9b40efbf4dbe963cb353d00373be"], ["version", 2]]
|
281797
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 6]]
|
281798
|
+
[1m[36m (17.3ms)[0m [1mcommit transaction[0m
|
281799
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
281800
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281801
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281802
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 20]]
|
281803
|
+
[1m[35m (51.7ms)[0m commit transaction
|
281804
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281805
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 21]]
|
281806
|
+
[1m[36m (11.3ms)[0m [1mcommit transaction[0m
|
281807
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281808
|
+
Binary data inserted for `string` type on column `uuid`
|
281809
|
+
[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", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "0a1a76e17a6c741253579e8963c4da24d74d0e57"], ["version", 2]]
|
281810
|
+
Binary data inserted for `string` type on column `uuid`
|
281811
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "0a1a76e17a6c741253579e8963c4da24d74d0e57"]]
|
281812
|
+
[1m[36m (29.2ms)[0m [1mcommit transaction[0m
|
281813
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281814
|
+
Binary data inserted for `string` type on column `uuid`
|
281815
|
+
[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", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:11 UTC +00:00], ["uuid", "0a1a76e17a6c741253579e8963c4da24d74d0e57"], ["version", 2]]
|
281816
|
+
[1m[35m (0.3ms)[0m UPDATE "products" SET "name" = 'New Name', "updated_at" = '2014-01-02 05:46:11.977828' WHERE "products"."id" = 7
|
281817
|
+
[1m[36m (40.7ms)[0m [1mcommit transaction[0m
|
281818
|
+
[1m[35mTraka::Change Load (0.4ms)[0m SELECT "traka_changes".* FROM "traka_changes" ORDER BY "traka_changes"."id" DESC LIMIT 1
|
281819
|
+
[1m[36mTraka::Change Load (0.3ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281820
|
+
[1m[35m (0.1ms)[0m begin transaction
|
281821
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 22]]
|
281822
|
+
[1m[35m (8.5ms)[0m commit transaction
|
281823
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281824
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 23]]
|
281825
|
+
[1m[36m (8.1ms)[0m [1mcommit transaction[0m
|
281826
|
+
[1m[35mTraka::Change Load (0.3ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281827
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281828
|
+
Binary data inserted for `string` type on column `uuid`
|
281829
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "e4580ac49d7314af3df37ae58afc4164354c2d03"], ["version", 2]]
|
281830
|
+
Binary data inserted for `string` type on column `uuid`
|
281831
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "e4580ac49d7314af3df37ae58afc4164354c2d03"]]
|
281832
|
+
[1m[35m (9.1ms)[0m commit transaction
|
281833
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281834
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281835
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281836
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
|
281837
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281838
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281839
|
+
Binary data inserted for `string` type on column `uuid`
|
281840
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "3394bd2253719e4137e646e4e2d68b56f39c7e7b"], ["version", 2]]
|
281841
|
+
Binary data inserted for `string` type on column `uuid`
|
281842
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "3394bd2253719e4137e646e4e2d68b56f39c7e7b"]]
|
281843
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281844
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281845
|
+
Binary data inserted for `string` type on column `uuid`
|
281846
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8ec68925aca2123c5febc3b24ba2a225a149b8c0"], ["version", 2]]
|
281847
|
+
Binary data inserted for `string` type on column `code`
|
281848
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "8ec68925aca2123c5febc3b24ba2a225a149b8c0"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
281849
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281850
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281851
|
+
Binary data inserted for `string` type on column `uuid`
|
281852
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "3394bd2253719e4137e646e4e2d68b56f39c7e7b"], ["version", 2]]
|
281853
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 9]]
|
281854
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281855
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281856
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281857
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281858
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281859
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281860
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281861
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281862
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
281863
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281864
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281865
|
+
Binary data inserted for `string` type on column `uuid`
|
281866
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"], ["version", 2]]
|
281867
|
+
Binary data inserted for `string` type on column `uuid`
|
281868
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"]]
|
281869
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281870
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281871
|
+
Binary data inserted for `string` type on column `uuid`
|
281872
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "7c65b5d7f9f11f90ac8cbb8291ca04d8c8986320"], ["version", 2]]
|
281873
|
+
Binary data inserted for `string` type on column `code`
|
281874
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "7c65b5d7f9f11f90ac8cbb8291ca04d8c8986320"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
281875
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281876
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281877
|
+
Binary data inserted for `string` type on column `uuid`
|
281878
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"], ["version", 2]]
|
281879
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.082603' WHERE "products"."id" = 9[0m
|
281880
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281882
|
+
Binary data inserted for `string` type on column `uuid`
|
281883
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "cf6022569da106fae16d3c53fc72c300fea38575"], ["version", 2]]
|
281884
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:46:12.084533' WHERE "products"."id" = 9[0m
|
281885
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281886
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281887
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
281888
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
281889
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281890
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281891
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281892
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281893
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
|
281894
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281895
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281896
|
+
Binary data inserted for `string` type on column `uuid`
|
281897
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"], ["version", 2]]
|
281898
|
+
Binary data inserted for `string` type on column `uuid`
|
281899
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"]]
|
281900
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281901
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281902
|
+
Binary data inserted for `string` type on column `uuid`
|
281903
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "4d7dd35ee664ac28af672955cc26a01e37e6d106"], ["version", 2]]
|
281904
|
+
Binary data inserted for `string` type on column `code`
|
281905
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "4d7dd35ee664ac28af672955cc26a01e37e6d106"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
281906
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281907
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281908
|
+
Binary data inserted for `string` type on column `uuid`
|
281909
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"], ["version", 3]]
|
281910
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.093790' WHERE "products"."id" = 9
|
281911
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281912
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281913
|
+
Binary data inserted for `string` type on column `uuid`
|
281914
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "4d7dd35ee664ac28af672955cc26a01e37e6d106"], ["version", 3]]
|
281915
|
+
[1m[35m (0.1ms)[0m UPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.095429' WHERE "cheeses"."id" = 9
|
281916
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281917
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281918
|
+
Binary data inserted for `string` type on column `uuid`
|
281919
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "316c0a7d467f791cd66bb5e90e6f23adcdf4df1e"], ["version", 3]]
|
281920
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 9]]
|
281921
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281922
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281923
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281924
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281925
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
281927
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
281928
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281929
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
281930
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281931
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281932
|
+
Binary data inserted for `string` type on column `uuid`
|
281933
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 2]]
|
281934
|
+
Binary data inserted for `string` type on column `uuid`
|
281935
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"]]
|
281936
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281937
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281938
|
+
Binary data inserted for `string` type on column `uuid`
|
281939
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "9275e077ff5e535ed2c34d3cc37b9b6e1f0703f6"], ["version", 2]]
|
281940
|
+
Binary data inserted for `string` type on column `code`
|
281941
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "9275e077ff5e535ed2c34d3cc37b9b6e1f0703f6"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
281942
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281943
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281944
|
+
Binary data inserted for `string` type on column `uuid`
|
281945
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 3]]
|
281946
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.105002' WHERE "products"."id" = 9[0m
|
281947
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281948
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281949
|
+
Binary data inserted for `string` type on column `uuid`
|
281950
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 3]]
|
281951
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:46:12.106534' WHERE "products"."id" = 9[0m
|
281952
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281953
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281954
|
+
Binary data inserted for `string` type on column `uuid`
|
281955
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "8339613d9588100f6134b82e3e67a131b51e352c"], ["version", 3]]
|
281956
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'And another name', "updated_at" = '2014-01-02 05:46:12.108010' WHERE "products"."id" = 9[0m
|
281957
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281958
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281959
|
+
Binary data inserted for `string` type on column `uuid`
|
281960
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "9275e077ff5e535ed2c34d3cc37b9b6e1f0703f6"], ["version", 3]]
|
281961
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "cheeses" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.109442' WHERE "cheeses"."id" = 9[0m
|
281962
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
281963
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281964
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
281965
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
281966
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281967
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
281968
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
281969
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
281970
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
|
281971
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281973
|
+
Binary data inserted for `string` type on column `uuid`
|
281974
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
|
281975
|
+
Binary data inserted for `string` type on column `uuid`
|
281976
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"]]
|
281977
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281978
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281979
|
+
Binary data inserted for `string` type on column `uuid`
|
281980
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "1581f3276cd7ea1a0994df7b9f071d1d4ef558f7"], ["version", 2]]
|
281981
|
+
Binary data inserted for `string` type on column `code`
|
281982
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "1581f3276cd7ea1a0994df7b9f071d1d4ef558f7"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
281983
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281984
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281985
|
+
Binary data inserted for `string` type on column `uuid`
|
281986
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
|
281987
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.119162' WHERE "products"."id" = 9
|
281988
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281989
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281990
|
+
Binary data inserted for `string` type on column `uuid`
|
281991
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
|
281992
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "name" = 'Another name', "updated_at" = '2014-01-02 05:46:12.120767' WHERE "products"."id" = 9
|
281993
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281994
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281995
|
+
Binary data inserted for `string` type on column `uuid`
|
281996
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "d54cdf6c8a6b407bfebf45e3e11e8481535b0f12"], ["version", 2]]
|
281997
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "products" WHERE "products"."id" = ? [["id", 9]]
|
281998
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
281999
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282000
|
+
Binary data inserted for `string` type on column `uuid`
|
282001
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "1581f3276cd7ea1a0994df7b9f071d1d4ef558f7"], ["version", 2]]
|
282002
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "cheeses" WHERE "cheeses"."id" = ? [["id", 9]]
|
282003
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282004
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
282005
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
282006
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
282007
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
282008
|
+
[1m[35m (0.0ms)[0m begin transaction
|
282009
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
282010
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282011
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
282012
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282013
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282014
|
+
Binary data inserted for `string` type on column `uuid`
|
282015
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "6112f33cf1c6a88fd232aa0334baeead3ef2e049"], ["version", 2]]
|
282016
|
+
Binary data inserted for `string` type on column `uuid`
|
282017
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "6112f33cf1c6a88fd232aa0334baeead3ef2e049"]]
|
282018
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282019
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282020
|
+
Binary data inserted for `string` type on column `uuid`
|
282021
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "f3127020b5616a2babcdf1a0e6bf09ef7c93c6a2"], ["version", 2]]
|
282022
|
+
Binary data inserted for `string` type on column `code`
|
282023
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "f3127020b5616a2babcdf1a0e6bf09ef7c93c6a2"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
282024
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282025
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
282026
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282027
|
+
Binary data inserted for `string` type on column `uuid`
|
282028
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "f84c9e01e777b1c996154226a111197d5a81c31b"], ["version", 3]]
|
282029
|
+
Binary data inserted for `string` type on column `uuid`
|
282030
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product B"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "f84c9e01e777b1c996154226a111197d5a81c31b"]]
|
282031
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282032
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
282033
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
282034
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
282035
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)[0m
|
282036
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 1 AND version <= 3)
|
282037
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
282038
|
+
[1m[35m (0.0ms)[0m begin transaction
|
282039
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
282040
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282041
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
282042
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282043
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282044
|
+
Binary data inserted for `string` type on column `uuid`
|
282045
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "c0defc07a05642d7bff2ce00b6e33277b0b49168"], ["version", 2]]
|
282046
|
+
Binary data inserted for `string` type on column `uuid`
|
282047
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "c0defc07a05642d7bff2ce00b6e33277b0b49168"]]
|
282048
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282049
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282050
|
+
Binary data inserted for `string` type on column `uuid`
|
282051
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "decf2e89fbaa2a6d98b8dc7a900b498eebdd2d67"], ["version", 2]]
|
282052
|
+
Binary data inserted for `string` type on column `code`
|
282053
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "decf2e89fbaa2a6d98b8dc7a900b498eebdd2d67"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
282054
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282055
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282056
|
+
Binary data inserted for `string` type on column `uuid`
|
282057
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "update"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "c0defc07a05642d7bff2ce00b6e33277b0b49168"], ["version", 3]]
|
282058
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "name" = 'New name', "updated_at" = '2014-01-02 05:46:12.141240' WHERE "products"."id" = 9[0m
|
282059
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282060
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282061
|
+
Binary data inserted for `string` type on column `uuid`
|
282062
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "destroy"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "decf2e89fbaa2a6d98b8dc7a900b498eebdd2d67"], ["version", 3]]
|
282063
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "cheeses" WHERE "cheeses"."id" = ?[0m [["id", 9]]
|
282064
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282065
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
282066
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)
|
282067
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 3 AND version <= 3)[0m
|
282068
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
282069
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
282070
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes"
|
282071
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282072
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "traka_changes" WHERE "traka_changes"."id" = ? [["id", 24]]
|
282073
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282074
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282075
|
+
Binary data inserted for `string` type on column `uuid`
|
282076
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "16880e9f4350580c59946b1245170faa03619347"], ["version", 2]]
|
282077
|
+
Binary data inserted for `string` type on column `uuid`
|
282078
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?) [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "16880e9f4350580c59946b1245170faa03619347"]]
|
282079
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282080
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282081
|
+
Binary data inserted for `string` type on column `uuid`
|
282082
|
+
[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", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "84da369583f64f8d7d2775ac1222dc966c90fb7c"], ["version", 2]]
|
282083
|
+
Binary data inserted for `string` type on column `code`
|
282084
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?) [["code", "84da369583f64f8d7d2775ac1222dc966c90fb7c"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
282085
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282086
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
282087
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
282088
|
+
[1m[35mTraka::Change Load (0.1ms)[0m SELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)
|
282089
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
282090
|
+
[1m[35m (0.0ms)[0m begin transaction
|
282091
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
282092
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282093
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
282094
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282095
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
282096
|
+
[1m[35m (0.0ms)[0m begin transaction
|
282097
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
282098
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282099
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
282100
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282102
|
+
Binary data inserted for `string` type on column `uuid`
|
282103
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Product"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "59072c75d25c22a8e5fc35d415a37c80441ab38b"], ["version", 2]]
|
282104
|
+
Binary data inserted for `string` type on column `uuid`
|
282105
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "products" ("created_at", "name", "updated_at", "uuid") VALUES (?, ?, ?, ?)[0m [["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Product A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "59072c75d25c22a8e5fc35d415a37c80441ab38b"]]
|
282106
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282107
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
282108
|
+
Binary data inserted for `string` type on column `uuid`
|
282109
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "traka_changes" ("action_type", "created_at", "klass", "updated_at", "uuid", "version") VALUES (?, ?, ?, ?, ?, ?) [["action_type", "create"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["klass", "Cheese"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["uuid", "dbcf0c5c100a5ca54846916fa3dcda3963eac5e6"], ["version", 2]]
|
282110
|
+
Binary data inserted for `string` type on column `code`
|
282111
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "cheeses" ("code", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["code", "dbcf0c5c100a5ca54846916fa3dcda3963eac5e6"], ["created_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00], ["name", "Cheese A"], ["updated_at", Thu, 02 Jan 2014 05:46:12 UTC +00:00]]
|
282112
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282113
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
282114
|
+
[1m[35mProduct Load (0.1ms)[0m SELECT "products".* FROM "products" WHERE "products"."uuid" = '59072c75d25c22a8e5fc35d415a37c80441ab38b' LIMIT 1
|
282115
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" WHERE (version >= 2 AND version <= 2)[0m
|
282116
|
+
[1m[35mCheese Load (0.1ms)[0m SELECT "cheeses".* FROM "cheeses" WHERE "cheeses"."code" = 'dbcf0c5c100a5ca54846916fa3dcda3963eac5e6' LIMIT 1
|
282117
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
282118
|
+
[1m[35m (0.0ms)[0m begin transaction
|
282119
|
+
[1m[36mTraka::Change Load (0.1ms)[0m [1mSELECT "traka_changes".* FROM "traka_changes" [0m
|
282120
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
282121
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "traka_changes" WHERE "traka_changes"."id" = ?[0m [["id", 24]]
|
282122
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
282123
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
282124
|
+
[1m[35m (0.1ms)[0m begin transaction
|
282125
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|