money-rails 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,5 +11,10 @@ describe "configuration" do
11
11
  it "registers a custom currency" do
12
12
  Money::Currency.table.should include(:eu4)
13
13
  end
14
+
15
+ it "adds exchange rates given in config initializer" do
16
+ Money.us_dollar(100).exchange_to("CAD").should == Money.new(124, "CAD")
17
+ Money.ca_dollar(100).exchange_to("USD").should == Money.new(80, "USD")
18
+ end
14
19
  end
15
20
  end
@@ -0,0 +1,10 @@
1
+ class DummyProduct < ActiveRecord::Base
2
+
3
+ attr_accessible :currency, :price_cents
4
+
5
+ # Use as model level currency
6
+ register_currency :gbp
7
+
8
+ # Use money-rails macros
9
+ monetize :price_cents
10
+ end
@@ -2,13 +2,16 @@ class Product < ActiveRecord::Base
2
2
 
3
3
  attr_accessible :price_cents, :discount, :bonus_cents
4
4
 
5
+ # Use USD as model level currency
6
+ register_currency :usd
7
+
5
8
  # Use money-rails macros
6
9
  monetize :price_cents
7
10
 
8
11
  # Use a custom name for the Money attribute
9
12
  monetize :discount, :as => "discount_value"
10
13
 
11
- # Override default currency (USD) with a specific one (EUR) for this field only
12
- monetize :bonus_cents, :with_currency => :eur
14
+ # Override default currency (EUR) with a specific one (GBP) for this field only
15
+ monetize :bonus_cents, :with_currency => :gbp
13
16
 
14
17
  end
@@ -0,0 +1,7 @@
1
+ class Service < ActiveRecord::Base
2
+ attr_accessible :charge_cents, :discount_cents
3
+
4
+ monetize :charge_cents, :with_currency => :usd
5
+
6
+ monetize :discount_cents
7
+ end
@@ -0,0 +1,8 @@
1
+ class Transaction < ActiveRecord::Base
2
+
3
+ attr_accessible :amount_cents, :currency, :tax_cents
4
+
5
+ monetize :amount_cents
6
+ monetize :tax_cents
7
+
8
+ end
@@ -6,6 +6,10 @@ MoneyRails.configure do |config|
6
6
  #
7
7
  config.default_currency = :eur
8
8
 
9
+ # Add some rates
10
+ config.add_rate "USD", "CAD", 1.24515
11
+ config.add_rate "CAD", "USD", 0.803115
12
+
9
13
  # To handle the inclusion of validations for monetized fields
10
14
  # The default value is true
11
15
  #
@@ -0,0 +1,10 @@
1
+ class CreateServices < ActiveRecord::Migration
2
+ def change
3
+ create_table :services do |t|
4
+ t.integer :charge_cents
5
+ t.integer :discount_cents
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ class CreateTransactions < ActiveRecord::Migration
2
+ def change
3
+ create_table :transactions do |t|
4
+ t.integer :amount_cents
5
+ t.integer :tax_cents
6
+ t.string :currency
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,10 @@
1
+ class CreateDummyProducts < ActiveRecord::Migration
2
+ def change
3
+ create_table :dummy_products do |t|
4
+ t.string :currency
5
+ t.integer :price_cents
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -11,7 +11,14 @@
11
11
  #
12
12
  # It's strongly recommended to check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 20120402080614) do
14
+ ActiveRecord::Schema.define(:version => 20120528210103) do
15
+
16
+ create_table "dummy_products", :force => true do |t|
17
+ t.string "currency"
18
+ t.integer "price_cents"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
15
22
 
16
23
  create_table "products", :force => true do |t|
17
24
  t.integer "price_cents"
@@ -19,7 +26,21 @@ ActiveRecord::Schema.define(:version => 20120402080614) do
19
26
  t.datetime "created_at", :null => false
20
27
  t.datetime "updated_at", :null => false
21
28
  t.integer "bonus_cents"
29
+ end
30
+
31
+ create_table "services", :force => true do |t|
32
+ t.integer "charge_cents"
33
+ t.integer "discount_cents"
34
+ t.datetime "created_at", :null => false
35
+ t.datetime "updated_at", :null => false
36
+ end
37
+
38
+ create_table "transactions", :force => true do |t|
39
+ t.integer "amount_cents"
40
+ t.integer "tax_cents"
22
41
  t.string "currency"
42
+ t.datetime "created_at", :null => false
43
+ t.datetime "updated_at", :null => false
23
44
  end
24
45
 
25
46
  end
Binary file
@@ -1,21 +1,68 @@
1
-  (0.1ms) select sqlite_version(*)
2
-  (123.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
-  (0.1ms) PRAGMA index_list("schema_migrations")
4
-  (83.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
2
  Migrating to CreateProducts (20120331190108)
7
-  (0.1ms) begin transaction
8
-  (1.0ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120331190108')
10
-  (176.2ms) commit transaction
11
-  (0.3ms) select sqlite_version(*)
3
+ Migrating to AddBonusCentsToProduct (20120402080348)
4
+  (0.0ms) select sqlite_version(*)
5
+  (0.0ms) begin transaction
6
+  (0.2ms) ALTER TABLE "products" ADD "bonus_cents" integer
7
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120402080348')
8
+  (90.4ms) commit transaction
9
+ Migrating to AddCurrencyToProduct (20120402080614)
10
+  (0.1ms) begin transaction
11
+  (0.4ms) ALTER TABLE "products" ADD "currency" varchar(255)
12
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120402080614')
13
+  (69.9ms) commit transaction
14
+  (0.2ms) select sqlite_version(*)
15
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
+  (0.0ms) PRAGMA index_list("products")
12
17
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
19
+ Migrating to AddCurrencyToProduct (20120402080614)
20
+  (0.0ms) select sqlite_version(*)
21
+  (0.0ms) begin transaction
22
+  (0.3ms) CREATE TEMPORARY TABLE "altered_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "bonus_cents" integer, "currency" varchar(255)) 
13
23
   (0.0ms) PRAGMA index_list("products")
24
+  (0.1ms) SELECT * FROM "products"
25
+  (0.1ms) DROP TABLE "products"
26
+  (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "bonus_cents" integer) 
27
+  (0.0ms) PRAGMA index_list("altered_products")
28
+  (0.0ms) SELECT * FROM "altered_products"
29
+  (0.1ms) DROP TABLE "altered_products"
30
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120402080614'
31
+  (147.4ms) commit transaction
32
+  (0.3ms) select sqlite_version(*)
33
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
34
+  (0.0ms) PRAGMA index_list("products")
14
35
   (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
-  (0.3ms) select sqlite_version(*)
16
-  (127.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
-  (113.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18
-  (0.0ms) PRAGMA index_list("schema_migrations")
19
-  (133.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
-  (0.1ms) SELECT version FROM "schema_migrations"
21
-  (115.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120331190108')
36
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
37
+ Migrating to AddBonusCentsToProduct (20120402080348)
38
+  (0.0ms) select sqlite_version(*)
39
+  (0.0ms) begin transaction
40
+  (0.3ms) CREATE TEMPORARY TABLE "altered_products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "bonus_cents" integer) 
41
+  (0.0ms) PRAGMA index_list("products")
42
+  (0.1ms) SELECT * FROM "products"
43
+  (0.1ms) DROP TABLE "products"
44
+  (0.1ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "price_cents" integer, "discount" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
45
+  (0.0ms) PRAGMA index_list("altered_products")
46
+  (0.0ms) SELECT * FROM "altered_products"
47
+  (0.1ms) DROP TABLE "altered_products"
48
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120402080348'
49
+  (114.1ms) commit transaction
50
+  (0.1ms) select sqlite_version(*)
51
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
52
+  (0.0ms) PRAGMA index_list("products")
53
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
54
+ Migrating to CreateProducts (20120331190108)
55
+ Migrating to AddBonusCentsToProduct (20120402080348)
56
+  (0.0ms) select sqlite_version(*)
57
+  (0.0ms) begin transaction
58
+  (0.2ms) ALTER TABLE "products" ADD "bonus_cents" integer
59
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120402080348')
60
+  (108.4ms) commit transaction
61
+ Migrating to AddCurrencyToProduct (20120402080614)
62
+  (0.0ms) begin transaction
63
+  (0.2ms) ALTER TABLE "products" ADD "currency" varchar(255)
64
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120402080614')
65
+  (76.9ms) commit transaction
66
+  (0.4ms) select sqlite_version(*)
67
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
68
+  (0.0ms) PRAGMA index_list("products")
@@ -1,546 +1,1100 @@
1
-  (0.5ms) begin transaction
2
-  (0.1ms) rollback transaction
3
-  (0.5ms) begin transaction
4
-  (0.0ms) rollback transaction
5
-  (0.5ms) begin transaction
1
+  (0.2ms) begin transaction
6
2
   (0.0ms) SAVEPOINT active_record_1
7
- SQL (59.1ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:26:24 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:26:24 UTC +00:00]]
8
-  (0.1ms) RELEASE SAVEPOINT active_record_1
9
-  (0.1ms) rollback transaction
10
-  (0.5ms) begin transaction
11
-  (0.1ms) SAVEPOINT active_record_1
12
- SQL (4.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:27:21 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:27:21 UTC +00:00]]
13
-  (0.1ms) RELEASE SAVEPOINT active_record_1
14
-  (0.1ms) rollback transaction
15
-  (0.5ms) begin transaction
16
-  (0.1ms) SAVEPOINT active_record_1
17
- SQL (4.2ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00]]
18
-  (0.1ms) RELEASE SAVEPOINT active_record_1
3
+ SQL (15.5ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 02 Apr 2012 07:53:19 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 07:53:19 UTC +00:00]]
4
+  (0.0ms) RELEASE SAVEPOINT active_record_1
19
5
   (0.1ms) rollback transaction
20
6
   (0.0ms) begin transaction
21
7
   (0.0ms) SAVEPOINT active_record_1
22
- SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:29:56 UTC +00:00]]
8
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 02 Apr 2012 07:53:19 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 07:53:19 UTC +00:00]]
23
9
   (0.0ms) RELEASE SAVEPOINT active_record_1
24
-  (0.1ms) rollback transaction
25
-  (0.5ms) begin transaction
26
-  (0.1ms) SAVEPOINT active_record_1
27
- SQL (4.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00]]
28
-  (0.1ms) RELEASE SAVEPOINT active_record_1
10
+  (0.0ms) rollback transaction
11
+  (0.2ms) begin transaction
12
+  (0.0ms) rollback transaction
13
+  (0.0ms) begin transaction
14
+  (0.0ms) rollback transaction
15
+  (0.2ms) begin transaction
16
+  (0.0ms) SAVEPOINT active_record_1
17
+ SQL (15.7ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 02 Apr 2012 08:13:28 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 08:13:28 UTC +00:00]]
18
+  (0.0ms) RELEASE SAVEPOINT active_record_1
29
19
   (0.1ms) rollback transaction
30
20
   (0.0ms) begin transaction
31
21
   (0.0ms) SAVEPOINT active_record_1
32
- SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:38:16 UTC +00:00]]
22
+ SQL (0.1ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 02 Apr 2012 08:13:28 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 08:13:28 UTC +00:00]]
33
23
   (0.0ms) RELEASE SAVEPOINT active_record_1
34
-  (0.1ms) rollback transaction
35
-  (0.5ms) begin transaction
36
-  (0.1ms) SAVEPOINT active_record_1
37
- SQL (4.2ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00]]
38
-  (0.1ms) RELEASE SAVEPOINT active_record_1
24
+  (0.0ms) rollback transaction
25
+  (0.2ms) begin transaction
26
+  (0.0ms) rollback transaction
27
+  (0.0ms) begin transaction
28
+  (0.0ms) rollback transaction
29
+  (0.0ms) begin transaction
30
+  (0.0ms) rollback transaction
31
+  (0.2ms) begin transaction
32
+  (0.0ms) rollback transaction
33
+  (0.0ms) begin transaction
34
+  (0.0ms) rollback transaction
35
+  (0.0ms) begin transaction
36
+  (0.0ms) rollback transaction
37
+  (0.2ms) begin transaction
38
+  (0.0ms) rollback transaction
39
+  (0.0ms) begin transaction
40
+  (0.0ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+  (0.0ms) rollback transaction
43
+  (0.2ms) begin transaction
44
+  (0.0ms) rollback transaction
45
+  (0.0ms) begin transaction
46
+  (0.0ms) rollback transaction
47
+  (0.0ms) begin transaction
48
+  (0.0ms) rollback transaction
49
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
50
+ Migrating to CreateProducts (20120331190108)
51
+ Migrating to AddBonusCentsToProduct (20120402080348)
52
+  (0.0ms) select sqlite_version(*)
53
+  (0.0ms) begin transaction
54
+  (0.2ms) ALTER TABLE "products" ADD "bonus_cents" integer
55
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120402080348')
56
+  (126.3ms) commit transaction
57
+ Migrating to AddCurrencyToProduct (20120402080614)
58
+  (0.1ms) begin transaction
59
+  (0.4ms) ALTER TABLE "products" ADD "currency" varchar(255)
60
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120402080614')
61
+  (85.5ms) commit transaction
62
+  (0.3ms) select sqlite_version(*)
63
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
64
+  (0.0ms) PRAGMA index_list("products")
65
+  (0.2ms) begin transaction
66
+  (0.0ms) SAVEPOINT active_record_1
67
+ SQL (14.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 02 Apr 2012 08:34:29 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 08:34:29 UTC +00:00]]
68
+  (0.0ms) RELEASE SAVEPOINT active_record_1
39
69
   (0.1ms) rollback transaction
40
70
   (0.0ms) begin transaction
41
71
   (0.0ms) SAVEPOINT active_record_1
42
- SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 19:49:06 UTC +00:00]]
72
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 02 Apr 2012 08:34:29 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 08:34:29 UTC +00:00]]
43
73
   (0.0ms) RELEASE SAVEPOINT active_record_1
44
-  (0.1ms) rollback transaction
45
-  (0.5ms) begin transaction
46
-  (0.1ms) SAVEPOINT active_record_1
47
- SQL (4.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00]]
48
-  (0.1ms) RELEASE SAVEPOINT active_record_1
74
+  (0.0ms) rollback transaction
75
+  (0.0ms) begin transaction
76
+  (0.0ms) SAVEPOINT active_record_1
77
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 02 Apr 2012 08:34:29 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 02 Apr 2012 08:34:29 UTC +00:00]]
78
+  (0.0ms) RELEASE SAVEPOINT active_record_1
79
+  (0.0ms) rollback transaction
80
+  (0.2ms) begin transaction
81
+  (0.0ms) SAVEPOINT active_record_1
82
+ SQL (27.6ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:20:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:20:49 UTC +00:00]]
83
+  (0.0ms) RELEASE SAVEPOINT active_record_1
49
84
   (0.1ms) rollback transaction
50
85
   (0.0ms) begin transaction
51
86
   (0.0ms) SAVEPOINT active_record_1
52
- SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:10:53 UTC +00:00]]
87
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:20:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:20:49 UTC +00:00]]
53
88
   (0.0ms) RELEASE SAVEPOINT active_record_1
54
-  (0.1ms) rollback transaction
55
-  (0.5ms) begin transaction
56
-  (0.1ms) SAVEPOINT active_record_1
57
- SQL (4.2ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00]]
58
-  (0.1ms) RELEASE SAVEPOINT active_record_1
89
+  (0.0ms) rollback transaction
90
+  (0.0ms) begin transaction
91
+  (0.0ms) SAVEPOINT active_record_1
92
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:20:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:20:49 UTC +00:00]]
93
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94
+  (0.0ms) rollback transaction
95
+  (0.2ms) begin transaction
96
+  (0.0ms) SAVEPOINT active_record_1
97
+ SQL (2.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:22:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:22:20 UTC +00:00]]
98
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59
99
   (0.1ms) rollback transaction
60
100
   (0.0ms) begin transaction
61
101
   (0.0ms) SAVEPOINT active_record_1
62
- SQL (0.3ms) INSERT INTO "products" ("created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 31 Mar 2012 20:11:22 UTC +00:00]]
102
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:22:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:22:20 UTC +00:00]]
63
103
   (0.0ms) RELEASE SAVEPOINT active_record_1
64
-  (0.1ms) rollback transaction
65
-  (0.4ms) begin transaction
66
-  (0.1ms) SAVEPOINT active_record_1
67
- SQL (27.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00]]
68
-  (0.1ms) RELEASE SAVEPOINT active_record_1
104
+  (0.0ms) rollback transaction
105
+  (0.0ms) begin transaction
106
+  (0.0ms) SAVEPOINT active_record_1
107
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:22:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:22:20 UTC +00:00]]
108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109
+  (0.0ms) rollback transaction
110
+  (0.2ms) begin transaction
111
+  (0.0ms) SAVEPOINT active_record_1
112
+ SQL (2.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:24:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:24:51 UTC +00:00]]
113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69
114
   (0.1ms) rollback transaction
70
115
   (0.0ms) begin transaction
71
116
   (0.0ms) SAVEPOINT active_record_1
72
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00]]
117
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:24:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:24:51 UTC +00:00]]
73
118
   (0.0ms) RELEASE SAVEPOINT active_record_1
74
-  (0.1ms) rollback transaction
75
-  (0.1ms) begin transaction
119
+  (0.0ms) rollback transaction
120
+  (0.0ms) begin transaction
76
121
   (0.0ms) SAVEPOINT active_record_1
77
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:55:26 UTC +00:00]]
122
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 11 Apr 2012 08:24:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 11 Apr 2012 08:24:51 UTC +00:00]]
123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
124
+  (0.0ms) rollback transaction
125
+  (0.2ms) begin transaction
126
+  (0.0ms) SAVEPOINT active_record_1
127
+ SQL (2.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 26 Apr 2012 07:00:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 26 Apr 2012 07:00:53 UTC +00:00]]
78
128
   (0.0ms) RELEASE SAVEPOINT active_record_1
79
129
   (0.1ms) rollback transaction
80
-  (0.6ms) begin transaction
81
-  (0.1ms) SAVEPOINT active_record_1
82
- SQL (27.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00]]
83
-  (0.1ms) RELEASE SAVEPOINT active_record_1
84
-  (0.1ms) rollback transaction
85
-  (0.1ms) begin transaction
130
+  (0.0ms) begin transaction
86
131
   (0.0ms) SAVEPOINT active_record_1
87
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00]]
132
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 26 Apr 2012 07:00:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 26 Apr 2012 07:00:53 UTC +00:00]]
88
133
   (0.0ms) RELEASE SAVEPOINT active_record_1
89
-  (0.1ms) rollback transaction
134
+  (0.0ms) rollback transaction
90
135
   (0.0ms) begin transaction
91
136
   (0.0ms) SAVEPOINT active_record_1
92
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:38 UTC +00:00]]
137
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 26 Apr 2012 07:00:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 26 Apr 2012 07:00:53 UTC +00:00]]
93
138
   (0.0ms) RELEASE SAVEPOINT active_record_1
94
139
   (0.1ms) rollback transaction
95
-  (0.5ms) begin transaction
96
-  (0.1ms) SAVEPOINT active_record_1
97
- SQL (26.9ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00]]
98
-  (0.1ms) RELEASE SAVEPOINT active_record_1
140
+  (0.2ms) begin transaction
141
+  (0.0ms) SAVEPOINT active_record_1
142
+ SQL (16.6ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 27 Apr 2012 14:35:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 27 Apr 2012 14:35:51 UTC +00:00]]
143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
99
144
   (0.1ms) rollback transaction
100
145
   (0.0ms) begin transaction
101
146
   (0.0ms) SAVEPOINT active_record_1
102
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00]]
147
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 27 Apr 2012 14:35:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 27 Apr 2012 14:35:51 UTC +00:00]]
103
148
   (0.0ms) RELEASE SAVEPOINT active_record_1
104
-  (0.1ms) rollback transaction
149
+  (0.0ms) rollback transaction
105
150
   (0.0ms) begin transaction
106
151
   (0.0ms) SAVEPOINT active_record_1
107
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 20:56:53 UTC +00:00]]
108
-  (0.1ms) RELEASE SAVEPOINT active_record_1
109
-  (0.1ms) rollback transaction
110
-  (0.4ms) begin transaction
111
-  (0.1ms) SAVEPOINT active_record_1
112
- SQL (26.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00]]
113
-  (0.1ms) RELEASE SAVEPOINT active_record_1
152
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 27 Apr 2012 14:35:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 27 Apr 2012 14:35:51 UTC +00:00]]
153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
154
+  (0.0ms) rollback transaction
155
+  (0.3ms) begin transaction
156
+  (0.0ms) SAVEPOINT active_record_1
157
+ SQL (2.0ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 27 Apr 2012 15:25:33 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 27 Apr 2012 15:25:33 UTC +00:00]]
158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
114
159
   (0.1ms) rollback transaction
115
160
   (0.0ms) begin transaction
116
161
   (0.0ms) SAVEPOINT active_record_1
117
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00]]
162
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 27 Apr 2012 15:25:33 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 27 Apr 2012 15:25:33 UTC +00:00]]
118
163
   (0.0ms) RELEASE SAVEPOINT active_record_1
119
-  (0.1ms) rollback transaction
164
+  (0.0ms) rollback transaction
120
165
   (0.0ms) begin transaction
121
166
   (0.0ms) SAVEPOINT active_record_1
122
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:23 UTC +00:00]]
167
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 27 Apr 2012 15:25:33 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 27 Apr 2012 15:25:33 UTC +00:00]]
168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
169
+  (0.0ms) rollback transaction
170
+  (0.2ms) begin transaction
171
+  (0.0ms) rollback transaction
172
+  (0.0ms) begin transaction
173
+  (0.0ms) SAVEPOINT active_record_1
174
+ SQL (2.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:40:02 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:40:02 UTC +00:00]]
123
175
   (0.0ms) RELEASE SAVEPOINT active_record_1
124
-  (0.1ms) rollback transaction
125
-  (0.4ms) begin transaction
126
-  (0.1ms) SAVEPOINT active_record_1
127
- SQL (28.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00]]
128
-  (0.1ms) RELEASE SAVEPOINT active_record_1
129
176
   (0.1ms) rollback transaction
130
177
   (0.0ms) begin transaction
131
178
   (0.0ms) SAVEPOINT active_record_1
132
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00]]
179
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:40:02 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:40:02 UTC +00:00]]
133
180
   (0.0ms) RELEASE SAVEPOINT active_record_1
134
-  (0.1ms) rollback transaction
181
+  (0.0ms) rollback transaction
135
182
   (0.0ms) begin transaction
136
183
   (0.0ms) SAVEPOINT active_record_1
137
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:08:40 UTC +00:00]]
184
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:40:02 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:40:02 UTC +00:00]]
138
185
   (0.0ms) RELEASE SAVEPOINT active_record_1
139
-  (0.1ms) rollback transaction
140
-  (0.4ms) begin transaction
141
-  (0.1ms) SAVEPOINT active_record_1
142
- SQL (26.7ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:11:13 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:11:13 UTC +00:00]]
143
-  (0.1ms) RELEASE SAVEPOINT active_record_1
144
-  (0.1ms) rollback transaction
145
-  (0.1ms) begin transaction
146
-  (0.0ms) SAVEPOINT active_record_1
147
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00]]
148
-  (0.0ms) RELEASE SAVEPOINT active_record_1
149
-  (0.1ms) rollback transaction
186
+  (0.0ms) rollback transaction
187
+  (0.3ms) begin transaction
188
+  (0.0ms) rollback transaction
150
189
   (0.0ms) begin transaction
151
190
   (0.0ms) SAVEPOINT active_record_1
152
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 19 Apr 2012 21:11:14 UTC +00:00]]
191
+ SQL (2.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:42:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:42:38 UTC +00:00]]
153
192
   (0.0ms) RELEASE SAVEPOINT active_record_1
154
193
   (0.1ms) rollback transaction
155
-  (0.4ms) begin transaction
156
-  (0.1ms) SAVEPOINT active_record_1
157
- SQL (24.8ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00]]
158
-  (0.1ms) RELEASE SAVEPOINT active_record_1
159
-  (0.1ms) rollback transaction
160
194
   (0.0ms) begin transaction
161
195
   (0.0ms) SAVEPOINT active_record_1
162
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00]]
196
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:42:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:42:38 UTC +00:00]]
163
197
   (0.0ms) RELEASE SAVEPOINT active_record_1
164
-  (0.2ms) rollback transaction
165
-  (0.1ms) begin transaction
166
-  (0.1ms) SAVEPOINT active_record_1
167
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 21 Apr 2012 10:56:06 UTC +00:00]]
168
-  (0.1ms) RELEASE SAVEPOINT active_record_1
169
-  (0.2ms) rollback transaction
170
-  (0.4ms) begin transaction
171
-  (0.1ms) rollback transaction
172
-  (0.1ms) begin transaction
173
-  (0.1ms) SAVEPOINT active_record_1
174
- SQL (25.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 15:26:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 15:26:59 UTC +00:00]]
175
-  (0.1ms) RELEASE SAVEPOINT active_record_1
198
+  (0.0ms) rollback transaction
199
+  (0.0ms) begin transaction
200
+  (0.0ms) SAVEPOINT active_record_1
201
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:42:38 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:42:38 UTC +00:00]]
202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
203
+  (0.1ms) rollback transaction
204
+  (0.2ms) begin transaction
205
+  (0.0ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+  (0.0ms) SAVEPOINT active_record_1
208
+ SQL (2.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:43:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:43:43 UTC +00:00]]
209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
176
210
   (0.1ms) rollback transaction
177
211
   (0.0ms) begin transaction
178
212
   (0.0ms) SAVEPOINT active_record_1
179
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 15:26:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 15:26:59 UTC +00:00]]
213
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:43:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:43:43 UTC +00:00]]
180
214
   (0.0ms) RELEASE SAVEPOINT active_record_1
181
-  (0.1ms) rollback transaction
215
+  (0.0ms) rollback transaction
182
216
   (0.0ms) begin transaction
183
217
   (0.0ms) SAVEPOINT active_record_1
184
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 15:26:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 15:26:59 UTC +00:00]]
218
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 09:43:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 09:43:43 UTC +00:00]]
185
219
   (0.0ms) RELEASE SAVEPOINT active_record_1
186
-  (0.1ms) rollback transaction
187
-  (0.4ms) begin transaction
220
+  (0.0ms) rollback transaction
221
+  (0.2ms) begin transaction
188
222
   (0.0ms) rollback transaction
189
-  (0.1ms) begin transaction
190
-  (0.1ms) SAVEPOINT active_record_1
191
- SQL (4.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 17:52:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 17:52:22 UTC +00:00]]
192
-  (0.1ms) RELEASE SAVEPOINT active_record_1
223
+  (0.0ms) begin transaction
224
+  (0.0ms) SAVEPOINT active_record_1
225
+ SQL (2.0ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 10:01:11 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 10:01:11 UTC +00:00]]
226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
193
227
   (0.1ms) rollback transaction
194
228
   (0.0ms) begin transaction
195
229
   (0.0ms) SAVEPOINT active_record_1
196
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 17:52:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 17:52:22 UTC +00:00]]
230
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 10:01:11 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 10:01:11 UTC +00:00]]
197
231
   (0.0ms) RELEASE SAVEPOINT active_record_1
198
232
   (0.1ms) rollback transaction
199
-  (0.1ms) begin transaction
233
+  (0.0ms) begin transaction
200
234
   (0.0ms) SAVEPOINT active_record_1
201
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 17:52:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 17:52:22 UTC +00:00]]
235
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 10:01:11 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 10:01:11 UTC +00:00]]
202
236
   (0.0ms) RELEASE SAVEPOINT active_record_1
203
-  (0.1ms) rollback transaction
204
-  (0.4ms) begin transaction
237
+  (0.0ms) rollback transaction
238
+  (0.2ms) begin transaction
205
239
   (0.0ms) rollback transaction
206
240
   (0.0ms) begin transaction
207
-  (0.1ms) SAVEPOINT active_record_1
208
- SQL (4.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 18:04:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 18:04:22 UTC +00:00]]
209
-  (0.1ms) RELEASE SAVEPOINT active_record_1
241
+  (0.0ms) rollback transaction
242
+  (0.0ms) begin transaction
243
+  (0.0ms) SAVEPOINT active_record_1
244
+ SQL (2.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 03 May 2012 08:00:18 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 03 May 2012 08:00:18 UTC +00:00]]
245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
210
246
   (0.1ms) rollback transaction
211
-  (0.1ms) begin transaction
247
+  (0.0ms) begin transaction
212
248
   (0.0ms) SAVEPOINT active_record_1
213
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 18:04:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 18:04:22 UTC +00:00]]
249
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 03 May 2012 08:00:18 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 03 May 2012 08:00:18 UTC +00:00]]
214
250
   (0.0ms) RELEASE SAVEPOINT active_record_1
215
-  (0.1ms) rollback transaction
251
+  (0.0ms) rollback transaction
216
252
   (0.0ms) begin transaction
217
253
   (0.0ms) SAVEPOINT active_record_1
218
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sat, 28 Apr 2012 18:04:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Sat, 28 Apr 2012 18:04:22 UTC +00:00]]
254
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 03 May 2012 08:00:18 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 03 May 2012 08:00:18 UTC +00:00]]
219
255
   (0.0ms) RELEASE SAVEPOINT active_record_1
220
-  (0.1ms) rollback transaction
221
-  (0.6ms) begin transaction
222
-  (0.1ms) rollback transaction
223
-  (0.1ms) begin transaction
224
-  (0.1ms) SAVEPOINT active_record_1
225
- SQL (23.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00]]
226
-  (0.1ms) RELEASE SAVEPOINT active_record_1
227
-  (0.1ms) rollback transaction
228
-  (0.0ms) begin transaction
229
256
   (0.0ms) SAVEPOINT active_record_1
230
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00]]
257
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-03 08:00:18.481851' WHERE "products"."id" = 1
231
258
   (0.0ms) RELEASE SAVEPOINT active_record_1
232
259
   (0.1ms) rollback transaction
233
260
   (0.0ms) begin transaction
234
261
   (0.0ms) SAVEPOINT active_record_1
235
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00]]
262
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 03 May 2012 08:00:18 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 03 May 2012 08:00:18 UTC +00:00]]
236
263
   (0.0ms) RELEASE SAVEPOINT active_record_1
237
-  (0.1ms) rollback transaction
264
+  (0.0ms) rollback transaction
238
265
   (0.0ms) begin transaction
239
266
   (0.0ms) SAVEPOINT active_record_1
240
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:14:47 UTC +00:00]]
267
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 03 May 2012 08:00:18 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 03 May 2012 08:00:18 UTC +00:00]]
241
268
   (0.0ms) RELEASE SAVEPOINT active_record_1
242
-  (0.0ms) SAVEPOINT active_record_1
243
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
244
-  (0.2ms) rollback transaction
245
-  (0.6ms) begin transaction
246
269
   (0.0ms) rollback transaction
247
-  (0.1ms) begin transaction
248
-  (0.1ms) SAVEPOINT active_record_1
249
- SQL (5.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00]]
250
-  (0.1ms) RELEASE SAVEPOINT active_record_1
251
-  (0.1ms) rollback transaction
252
-  (0.0ms) begin transaction
270
+  (0.0ms) begin transaction
271
+  (0.0ms) SAVEPOINT active_record_1
272
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 03 May 2012 08:00:18 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 03 May 2012 08:00:18 UTC +00:00]]
273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
253
274
   (0.0ms) SAVEPOINT active_record_1
254
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00]]
275
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
276
+  (0.0ms) SAVEPOINT active_record_1
277
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-03 08:00:18.523139' WHERE "products"."id" = 1
255
278
   (0.0ms) RELEASE SAVEPOINT active_record_1
256
279
   (0.1ms) rollback transaction
280
+  (0.2ms) begin transaction
281
+  (0.0ms) rollback transaction
282
+  (0.0ms) begin transaction
283
+  (0.0ms) rollback transaction
257
284
   (0.0ms) begin transaction
258
285
   (0.0ms) SAVEPOINT active_record_1
259
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00]]
286
+ SQL (30.7ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:23:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:23:43 UTC +00:00]]
260
287
   (0.0ms) RELEASE SAVEPOINT active_record_1
261
288
   (0.1ms) rollback transaction
262
289
   (0.0ms) begin transaction
263
290
   (0.0ms) SAVEPOINT active_record_1
264
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:15:34 UTC +00:00]]
291
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:23:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:23:43 UTC +00:00]]
265
292
   (0.0ms) RELEASE SAVEPOINT active_record_1
266
-  (0.0ms) SAVEPOINT active_record_1
267
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
268
-  (0.1ms) SAVEPOINT active_record_1
269
-  (0.3ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-04-30 23:15:34.779479' WHERE "products"."id" = 1
270
-  (0.0ms) RELEASE SAVEPOINT active_record_1
271
-  (0.2ms) rollback transaction
272
-  (0.4ms) begin transaction
273
293
   (0.0ms) rollback transaction
274
294
   (0.0ms) begin transaction
275
-  (0.1ms) SAVEPOINT active_record_1
276
- SQL (4.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00]]
277
-  (0.1ms) RELEASE SAVEPOINT active_record_1
278
-  (0.2ms) rollback transaction
279
-  (0.0ms) begin transaction
295
+  (0.0ms) SAVEPOINT active_record_1
296
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:23:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:23:43 UTC +00:00]]
297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
280
298
   (0.0ms) SAVEPOINT active_record_1
281
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00]]
299
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-18 08:23:43.537625' WHERE "products"."id" = 1
282
300
   (0.0ms) RELEASE SAVEPOINT active_record_1
283
301
   (0.1ms) rollback transaction
284
-  (0.1ms) begin transaction
302
+  (0.0ms) begin transaction
285
303
   (0.0ms) SAVEPOINT active_record_1
286
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00]]
304
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:23:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:23:43 UTC +00:00]]
287
305
   (0.0ms) RELEASE SAVEPOINT active_record_1
288
-  (0.1ms) rollback transaction
306
+  (0.0ms) rollback transaction
289
307
   (0.0ms) begin transaction
290
308
   (0.0ms) SAVEPOINT active_record_1
291
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00]]
309
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:23:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:23:43 UTC +00:00]]
292
310
   (0.0ms) RELEASE SAVEPOINT active_record_1
293
-  (0.1ms) rollback transaction
311
+  (0.0ms) rollback transaction
294
312
   (0.0ms) begin transaction
295
313
   (0.0ms) SAVEPOINT active_record_1
296
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:23:36 UTC +00:00]]
314
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:23:43 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:23:43 UTC +00:00]]
297
315
   (0.0ms) RELEASE SAVEPOINT active_record_1
298
316
   (0.0ms) SAVEPOINT active_record_1
299
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
300
-  (0.1ms) SAVEPOINT active_record_1
301
-  (0.3ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-04-30 23:23:36.931350' WHERE "products"."id" = 1
317
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
318
+  (0.0ms) SAVEPOINT active_record_1
319
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-18 08:23:43.559831' WHERE "products"."id" = 1
302
320
   (0.0ms) RELEASE SAVEPOINT active_record_1
303
321
   (0.1ms) rollback transaction
304
-  (0.4ms) begin transaction
322
+  (0.2ms) begin transaction
323
+  (0.0ms) rollback transaction
324
+  (0.0ms) begin transaction
305
325
   (0.0ms) rollback transaction
306
326
   (0.0ms) begin transaction
307
-  (0.1ms) SAVEPOINT active_record_1
308
- SQL (4.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00]]
309
-  (0.1ms) RELEASE SAVEPOINT active_record_1
327
+  (0.0ms) SAVEPOINT active_record_1
328
+ SQL (2.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:24:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:24:47 UTC +00:00]]
329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
310
330
   (0.1ms) rollback transaction
311
-  (0.1ms) begin transaction
331
+  (0.0ms) begin transaction
312
332
   (0.0ms) SAVEPOINT active_record_1
313
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00]]
333
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:24:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:24:47 UTC +00:00]]
314
334
   (0.0ms) RELEASE SAVEPOINT active_record_1
315
-  (0.1ms) rollback transaction
335
+  (0.0ms) rollback transaction
316
336
   (0.0ms) begin transaction
317
337
   (0.0ms) SAVEPOINT active_record_1
318
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00]]
338
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:24:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:24:47 UTC +00:00]]
319
339
   (0.0ms) RELEASE SAVEPOINT active_record_1
320
-  (0.2ms) rollback transaction
321
-  (0.1ms) begin transaction
322
-  (0.1ms) SAVEPOINT active_record_1
323
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00]]
324
-  (0.1ms) RELEASE SAVEPOINT active_record_1
340
+  (0.0ms) SAVEPOINT active_record_1
341
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-18 08:24:47.230290' WHERE "products"."id" = 1
342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
325
343
   (0.1ms) rollback transaction
326
-  (0.1ms) begin transaction
344
+  (0.0ms) begin transaction
327
345
   (0.0ms) SAVEPOINT active_record_1
328
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00]]
346
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:24:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:24:47 UTC +00:00]]
329
347
   (0.0ms) RELEASE SAVEPOINT active_record_1
330
-  (0.1ms) rollback transaction
331
-  (0.1ms) begin transaction
348
+  (0.0ms) rollback transaction
349
+  (0.0ms) begin transaction
332
350
   (0.0ms) SAVEPOINT active_record_1
333
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:20 UTC +00:00]]
351
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:24:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:24:47 UTC +00:00]]
334
352
   (0.0ms) RELEASE SAVEPOINT active_record_1
335
-  (0.0ms) SAVEPOINT active_record_1
336
-  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
337
-  (0.1ms) SAVEPOINT active_record_1
338
-  (0.3ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-04-30 23:29:20.101664' WHERE "products"."id" = 1
339
-  (0.1ms) RELEASE SAVEPOINT active_record_1
340
-  (0.1ms) rollback transaction
341
-  (0.5ms) begin transaction
342
353
   (0.0ms) rollback transaction
343
-  (0.1ms) begin transaction
344
-  (0.1ms) SAVEPOINT active_record_1
345
- SQL (4.7ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00]]
346
-  (0.1ms) RELEASE SAVEPOINT active_record_1
347
-  (0.2ms) rollback transaction
348
-  (0.1ms) begin transaction
349
-  (0.0ms) SAVEPOINT active_record_1
350
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00]]
351
-  (0.1ms) RELEASE SAVEPOINT active_record_1
352
-  (0.1ms) rollback transaction
353
354
   (0.0ms) begin transaction
354
355
   (0.0ms) SAVEPOINT active_record_1
355
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00]]
356
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:24:47 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:24:47 UTC +00:00]]
356
357
   (0.0ms) RELEASE SAVEPOINT active_record_1
357
358
   (0.0ms) SAVEPOINT active_record_1
358
-  (0.3ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-04-30 23:29:35.897484' WHERE "products"."id" = 1
359
-  (0.1ms) RELEASE SAVEPOINT active_record_1
360
-  (0.3ms) rollback transaction
361
-  (0.1ms) begin transaction
362
-  (0.0ms) SAVEPOINT active_record_1
363
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00]]
364
-  (0.1ms) RELEASE SAVEPOINT active_record_1
365
-  (0.1ms) rollback transaction
366
-  (0.1ms) begin transaction
359
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
367
360
   (0.0ms) SAVEPOINT active_record_1
368
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00]]
369
-  (0.1ms) RELEASE SAVEPOINT active_record_1
361
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-18 08:24:47.240402' WHERE "products"."id" = 1
362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
370
363
   (0.1ms) rollback transaction
371
-  (0.1ms) begin transaction
364
+  (0.2ms) begin transaction
365
+  (0.0ms) rollback transaction
366
+  (0.0ms) begin transaction
367
+  (0.0ms) rollback transaction
368
+  (0.0ms) begin transaction
372
369
   (0.0ms) SAVEPOINT active_record_1
373
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:29:35 UTC +00:00]]
374
-  (0.1ms) RELEASE SAVEPOINT active_record_1
375
-  (0.0ms) SAVEPOINT active_record_1
376
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
370
+ SQL (2.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:30:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:30:59 UTC +00:00]]
371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
372
+  (0.1ms) rollback transaction
373
+  (0.0ms) begin transaction
377
374
   (0.0ms) SAVEPOINT active_record_1
378
-  (0.2ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-04-30 23:29:35.943571' WHERE "products"."id" = 1
375
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:30:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:30:59 UTC +00:00]]
379
376
   (0.0ms) RELEASE SAVEPOINT active_record_1
380
-  (0.2ms) rollback transaction
381
-  (0.4ms) begin transaction
382
377
   (0.0ms) rollback transaction
383
378
   (0.0ms) begin transaction
384
-  (0.1ms) SAVEPOINT active_record_1
385
- SQL (4.6ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00]]
386
-  (0.1ms) RELEASE SAVEPOINT active_record_1
387
-  (0.1ms) rollback transaction
388
-  (0.1ms) begin transaction
379
+  (0.0ms) SAVEPOINT active_record_1
380
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:30:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:30:59 UTC +00:00]]
381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
389
382
   (0.0ms) SAVEPOINT active_record_1
390
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00]]
383
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-18 08:30:59.346515' WHERE "products"."id" = 1
391
384
   (0.0ms) RELEASE SAVEPOINT active_record_1
392
385
   (0.1ms) rollback transaction
393
386
   (0.0ms) begin transaction
394
387
   (0.0ms) SAVEPOINT active_record_1
395
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00]]
388
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:30:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:30:59 UTC +00:00]]
396
389
   (0.0ms) RELEASE SAVEPOINT active_record_1
390
+  (0.0ms) rollback transaction
391
+  (0.0ms) begin transaction
397
392
   (0.0ms) SAVEPOINT active_record_1
398
-  (0.2ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-04-30 23:38:21.163930' WHERE "products"."id" = 1
393
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:30:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:30:59 UTC +00:00]]
399
394
   (0.0ms) RELEASE SAVEPOINT active_record_1
400
-  (0.2ms) rollback transaction
401
-  (0.1ms) begin transaction
395
+  (0.0ms) rollback transaction
396
+  (0.0ms) begin transaction
402
397
   (0.0ms) SAVEPOINT active_record_1
403
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00]]
398
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:30:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:30:59 UTC +00:00]]
404
399
   (0.0ms) RELEASE SAVEPOINT active_record_1
405
-  (0.1ms) rollback transaction
406
-  (0.1ms) begin transaction
407
400
   (0.0ms) SAVEPOINT active_record_1
408
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00]]
409
-  (0.1ms) RELEASE SAVEPOINT active_record_1
410
-  (0.1ms) rollback transaction
411
-  (0.1ms) begin transaction
412
-  (0.0ms) SAVEPOINT active_record_1
413
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Mon, 30 Apr 2012 23:38:21 UTC +00:00]]
414
-  (0.0ms) RELEASE SAVEPOINT active_record_1
401
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
415
402
   (0.0ms) SAVEPOINT active_record_1
416
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
417
-  (0.1ms) SAVEPOINT active_record_1
418
-  (0.2ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-04-30 23:38:21.209437' WHERE "products"."id" = 1
403
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-18 08:30:59.356357' WHERE "products"."id" = 1
419
404
   (0.0ms) RELEASE SAVEPOINT active_record_1
420
405
   (0.1ms) rollback transaction
421
-  (0.4ms) begin transaction
406
+  (0.2ms) begin transaction
422
407
   (0.0ms) rollback transaction
423
-  (0.1ms) begin transaction
424
-  (0.1ms) rollback transaction
425
-  (0.1ms) begin transaction
426
-  (0.1ms) SAVEPOINT active_record_1
427
- SQL (19.7ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:56:31 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:56:31 UTC +00:00]]
428
-  (0.1ms) RELEASE SAVEPOINT active_record_1
429
-  (0.2ms) rollback transaction
430
-  (0.1ms) begin transaction
408
+  (0.0ms) begin transaction
409
+  (0.0ms) rollback transaction
410
+  (0.0ms) begin transaction
411
+  (0.0ms) SAVEPOINT active_record_1
412
+ SQL (2.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:44:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:44:36 UTC +00:00]]
413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
414
+  (0.1ms) rollback transaction
415
+  (0.0ms) begin transaction
431
416
   (0.0ms) SAVEPOINT active_record_1
432
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:56:31 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:56:31 UTC +00:00]]
417
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:44:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:44:36 UTC +00:00]]
433
418
   (0.0ms) RELEASE SAVEPOINT active_record_1
434
-  (0.1ms) rollback transaction
419
+  (0.0ms) rollback transaction
435
420
   (0.0ms) begin transaction
436
421
   (0.0ms) SAVEPOINT active_record_1
437
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:56:31 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:56:31 UTC +00:00]]
422
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:44:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:44:36 UTC +00:00]]
438
423
   (0.0ms) RELEASE SAVEPOINT active_record_1
439
424
   (0.0ms) SAVEPOINT active_record_1
440
-  (0.3ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-01 09:56:31.561775' WHERE "products"."id" = 1
425
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-18 08:44:36.750659' WHERE "products"."id" = 1
441
426
   (0.0ms) RELEASE SAVEPOINT active_record_1
442
-  (0.2ms) rollback transaction
443
-  (0.1ms) begin transaction
427
+  (0.1ms) rollback transaction
428
+  (0.0ms) begin transaction
444
429
   (0.0ms) SAVEPOINT active_record_1
445
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:56:31 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:56:31 UTC +00:00]]
430
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:44:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:44:36 UTC +00:00]]
446
431
   (0.0ms) RELEASE SAVEPOINT active_record_1
447
-  (0.1ms) rollback transaction
432
+  (0.0ms) rollback transaction
448
433
   (0.0ms) begin transaction
449
434
   (0.0ms) SAVEPOINT active_record_1
450
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:56:31 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:56:31 UTC +00:00]]
435
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:44:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:44:36 UTC +00:00]]
451
436
   (0.0ms) RELEASE SAVEPOINT active_record_1
452
-  (0.1ms) rollback transaction
437
+  (0.0ms) rollback transaction
453
438
   (0.0ms) begin transaction
454
439
   (0.0ms) SAVEPOINT active_record_1
455
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:56:31 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:56:31 UTC +00:00]]
440
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:44:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:44:36 UTC +00:00]]
456
441
   (0.0ms) RELEASE SAVEPOINT active_record_1
457
442
   (0.0ms) SAVEPOINT active_record_1
458
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
459
-  (0.1ms) SAVEPOINT active_record_1
460
-  (0.2ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-01 09:56:31.615413' WHERE "products"."id" = 1
443
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
444
+  (0.0ms) SAVEPOINT active_record_1
445
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-18 08:44:36.760458' WHERE "products"."id" = 1
461
446
   (0.0ms) RELEASE SAVEPOINT active_record_1
462
-  (0.2ms) rollback transaction
463
-  (0.4ms) begin transaction
447
+  (0.1ms) rollback transaction
448
+  (0.2ms) begin transaction
464
449
   (0.0ms) rollback transaction
465
450
   (0.0ms) begin transaction
466
-  (0.1ms) rollback transaction
467
-  (0.1ms) begin transaction
468
-  (0.1ms) SAVEPOINT active_record_1
469
- SQL (4.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:58:41 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:58:41 UTC +00:00]]
470
-  (0.1ms) RELEASE SAVEPOINT active_record_1
471
-  (0.2ms) rollback transaction
451
+  (0.0ms) rollback transaction
452
+  (0.0ms) begin transaction
453
+  (0.0ms) rollback transaction
454
+  (0.0ms) begin transaction
455
+  (0.0ms) SAVEPOINT active_record_1
456
+ SQL (2.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:51:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:51:23 UTC +00:00]]
457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
458
+  (0.1ms) rollback transaction
472
459
   (0.0ms) begin transaction
473
460
   (0.0ms) SAVEPOINT active_record_1
474
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:58:41 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:58:41 UTC +00:00]]
461
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:51:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:51:23 UTC +00:00]]
475
462
   (0.0ms) RELEASE SAVEPOINT active_record_1
476
-  (0.1ms) rollback transaction
463
+  (0.0ms) rollback transaction
477
464
   (0.0ms) begin transaction
478
465
   (0.0ms) SAVEPOINT active_record_1
479
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:58:41 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:58:41 UTC +00:00]]
466
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:51:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:51:23 UTC +00:00]]
480
467
   (0.0ms) RELEASE SAVEPOINT active_record_1
481
468
   (0.0ms) SAVEPOINT active_record_1
482
-  (0.3ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-01 09:58:41.382431' WHERE "products"."id" = 1
469
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-18 08:51:23.177296' WHERE "products"."id" = 1
483
470
   (0.0ms) RELEASE SAVEPOINT active_record_1
484
-  (0.2ms) rollback transaction
485
-  (0.1ms) begin transaction
471
+  (0.1ms) rollback transaction
472
+  (0.0ms) begin transaction
486
473
   (0.0ms) SAVEPOINT active_record_1
487
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:58:41 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:58:41 UTC +00:00]]
474
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:51:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:51:23 UTC +00:00]]
488
475
   (0.0ms) RELEASE SAVEPOINT active_record_1
489
-  (0.1ms) rollback transaction
476
+  (0.0ms) rollback transaction
490
477
   (0.0ms) begin transaction
491
478
   (0.0ms) SAVEPOINT active_record_1
492
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:58:41 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:58:41 UTC +00:00]]
479
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:51:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:51:23 UTC +00:00]]
493
480
   (0.0ms) RELEASE SAVEPOINT active_record_1
494
-  (0.2ms) rollback transaction
495
-  (0.1ms) begin transaction
481
+  (0.0ms) rollback transaction
482
+  (0.0ms) begin transaction
496
483
   (0.0ms) SAVEPOINT active_record_1
497
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:58:41 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:58:41 UTC +00:00]]
484
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:51:23 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:51:23 UTC +00:00]]
498
485
   (0.0ms) RELEASE SAVEPOINT active_record_1
499
486
   (0.0ms) SAVEPOINT active_record_1
500
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
487
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
501
488
   (0.0ms) SAVEPOINT active_record_1
502
-  (0.2ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-01 09:58:41.402104' WHERE "products"."id" = 1
489
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-18 08:51:23.186778' WHERE "products"."id" = 1
503
490
   (0.0ms) RELEASE SAVEPOINT active_record_1
504
491
   (0.1ms) rollback transaction
505
-  (0.6ms) begin transaction
492
+  (0.2ms) begin transaction
506
493
   (0.0ms) rollback transaction
507
494
   (0.0ms) begin transaction
508
495
   (0.0ms) rollback transaction
509
-  (0.1ms) begin transaction
510
-  (0.1ms) SAVEPOINT active_record_1
511
- SQL (4.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:59:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:59:49 UTC +00:00]]
512
-  (0.1ms) RELEASE SAVEPOINT active_record_1
513
-  (0.2ms) rollback transaction
496
+  (0.0ms) begin transaction
497
+  (0.0ms) rollback transaction
498
+  (0.0ms) begin transaction
499
+  (0.0ms) SAVEPOINT active_record_1
500
+ SQL (2.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:54:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:54:20 UTC +00:00]]
501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
502
+  (0.1ms) rollback transaction
514
503
   (0.0ms) begin transaction
515
504
   (0.0ms) SAVEPOINT active_record_1
516
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:59:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:59:49 UTC +00:00]]
505
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:54:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:54:20 UTC +00:00]]
517
506
   (0.0ms) RELEASE SAVEPOINT active_record_1
518
-  (0.1ms) rollback transaction
507
+  (0.0ms) rollback transaction
519
508
   (0.0ms) begin transaction
520
509
   (0.0ms) SAVEPOINT active_record_1
521
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:59:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:59:49 UTC +00:00]]
510
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:54:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:54:20 UTC +00:00]]
522
511
   (0.0ms) RELEASE SAVEPOINT active_record_1
523
512
   (0.0ms) SAVEPOINT active_record_1
524
-  (0.3ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-01 09:59:49.232173' WHERE "products"."id" = 1
513
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-18 08:54:20.186169' WHERE "products"."id" = 1
525
514
   (0.0ms) RELEASE SAVEPOINT active_record_1
526
-  (0.2ms) rollback transaction
515
+  (0.1ms) rollback transaction
527
516
   (0.0ms) begin transaction
528
517
   (0.0ms) SAVEPOINT active_record_1
529
- SQL (0.4ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:59:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:59:49 UTC +00:00]]
530
-  (0.1ms) RELEASE SAVEPOINT active_record_1
531
-  (0.1ms) rollback transaction
532
-  (0.1ms) begin transaction
518
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:54:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:54:20 UTC +00:00]]
519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
520
+  (0.0ms) rollback transaction
521
+  (0.0ms) begin transaction
533
522
   (0.0ms) SAVEPOINT active_record_1
534
- SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:59:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:59:49 UTC +00:00]]
523
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:54:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:54:20 UTC +00:00]]
535
524
   (0.0ms) RELEASE SAVEPOINT active_record_1
536
-  (0.1ms) rollback transaction
525
+  (0.0ms) rollback transaction
537
526
   (0.0ms) begin transaction
538
527
   (0.0ms) SAVEPOINT active_record_1
539
- SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 01 May 2012 09:59:49 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 01 May 2012 09:59:49 UTC +00:00]]
528
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Fri, 18 May 2012 08:54:20 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Fri, 18 May 2012 08:54:20 UTC +00:00]]
540
529
   (0.0ms) RELEASE SAVEPOINT active_record_1
541
530
   (0.0ms) SAVEPOINT active_record_1
542
-  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
543
-  (0.1ms) SAVEPOINT active_record_1
544
-  (0.3ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-01 09:59:49.251905' WHERE "products"."id" = 1
531
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
532
+  (0.0ms) SAVEPOINT active_record_1
533
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-18 08:54:20.195865' WHERE "products"."id" = 1
545
534
   (0.0ms) RELEASE SAVEPOINT active_record_1
546
535
   (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+  (0.0ms) rollback transaction
538
+  (0.0ms) begin transaction
539
+  (0.0ms) rollback transaction
540
+  (0.0ms) begin transaction
541
+  (0.0ms) rollback transaction
542
+  (0.0ms) begin transaction
543
+  (0.0ms) SAVEPOINT active_record_1
544
+ SQL (15.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 22 May 2012 15:45:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 22 May 2012 15:45:36 UTC +00:00]]
545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
546
+  (0.2ms) rollback transaction
547
+  (0.0ms) begin transaction
548
+  (0.0ms) SAVEPOINT active_record_1
549
+ SQL (0.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 22 May 2012 15:45:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 22 May 2012 15:45:36 UTC +00:00]]
550
+  (0.0ms) RELEASE SAVEPOINT active_record_1
551
+  (0.1ms) rollback transaction
552
+  (0.0ms) begin transaction
553
+  (0.0ms) SAVEPOINT active_record_1
554
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 22 May 2012 15:45:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 22 May 2012 15:45:36 UTC +00:00]]
555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
556
+  (0.0ms) SAVEPOINT active_record_1
557
+  (0.2ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-22 15:45:36.872327' WHERE "products"."id" = 1
558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
559
+  (0.1ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+  (0.0ms) SAVEPOINT active_record_1
562
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 22 May 2012 15:45:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 22 May 2012 15:45:36 UTC +00:00]]
563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
564
+  (0.1ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+  (0.0ms) SAVEPOINT active_record_1
567
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 22 May 2012 15:45:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 22 May 2012 15:45:36 UTC +00:00]]
568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
569
+  (0.0ms) rollback transaction
570
+  (0.0ms) begin transaction
571
+  (0.0ms) SAVEPOINT active_record_1
572
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Tue, 22 May 2012 15:45:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Tue, 22 May 2012 15:45:36 UTC +00:00]]
573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
574
+  (0.0ms) SAVEPOINT active_record_1
575
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
576
+  (0.0ms) SAVEPOINT active_record_1
577
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-22 15:45:36.897146' WHERE "products"."id" = 1
578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
579
+  (0.1ms) rollback transaction
580
+  (0.1ms) begin transaction
581
+  (0.0ms) rollback transaction
582
+  (0.0ms) begin transaction
583
+  (0.0ms) rollback transaction
584
+  (0.0ms) begin transaction
585
+  (0.0ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+  (0.0ms) SAVEPOINT active_record_1
588
+ SQL (2.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 08:56:21 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 08:56:21 UTC +00:00]]
589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
590
+  (0.2ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+  (0.0ms) SAVEPOINT active_record_1
593
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 08:56:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 08:56:22 UTC +00:00]]
594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
595
+  (0.0ms) rollback transaction
596
+  (0.0ms) begin transaction
597
+  (0.0ms) SAVEPOINT active_record_1
598
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 08:56:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 08:56:22 UTC +00:00]]
599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
600
+  (0.0ms) SAVEPOINT active_record_1
601
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-23 08:56:22.011106' WHERE "products"."id" = 1
602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
603
+  (0.1ms) rollback transaction
604
+  (0.0ms) begin transaction
605
+  (0.0ms) SAVEPOINT active_record_1
606
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 08:56:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 08:56:22 UTC +00:00]]
607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
608
+  (0.0ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+  (0.0ms) SAVEPOINT active_record_1
611
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 08:56:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 08:56:22 UTC +00:00]]
612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
613
+  (0.0ms) rollback transaction
614
+  (0.0ms) begin transaction
615
+  (0.0ms) SAVEPOINT active_record_1
616
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 08:56:22 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 08:56:22 UTC +00:00]]
617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
618
+  (0.0ms) SAVEPOINT active_record_1
619
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
620
+  (0.0ms) SAVEPOINT active_record_1
621
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-23 08:56:22.021024' WHERE "products"."id" = 1
622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
623
+  (0.1ms) rollback transaction
624
+  (0.0ms) begin transaction
625
+  (0.0ms) rollback transaction
626
+  (0.0ms) begin transaction
627
+  (0.0ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+  (0.0ms) rollback transaction
630
+  (0.0ms) begin transaction
631
+  (0.0ms) SAVEPOINT active_record_1
632
+ SQL (17.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:51 UTC +00:00]]
633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
634
+  (0.1ms) rollback transaction
635
+  (0.0ms) begin transaction
636
+  (0.0ms) SAVEPOINT active_record_1
637
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:51 UTC +00:00]]
638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
639
+  (0.0ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+  (0.0ms) SAVEPOINT active_record_1
642
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:51 UTC +00:00]]
643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
644
+  (0.0ms) SAVEPOINT active_record_1
645
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-23 15:26:51.822797' WHERE "products"."id" = 1
646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
647
+  (0.1ms) rollback transaction
648
+  (0.0ms) begin transaction
649
+  (0.0ms) SAVEPOINT active_record_1
650
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:51 UTC +00:00]]
651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
652
+  (0.0ms) rollback transaction
653
+  (0.0ms) begin transaction
654
+  (0.0ms) SAVEPOINT active_record_1
655
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:51 UTC +00:00]]
656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
657
+  (0.0ms) rollback transaction
658
+  (0.0ms) begin transaction
659
+  (0.0ms) SAVEPOINT active_record_1
660
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:51 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:51 UTC +00:00]]
661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
662
+  (0.0ms) SAVEPOINT active_record_1
663
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
664
+  (0.0ms) SAVEPOINT active_record_1
665
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-23 15:26:51.833258' WHERE "products"."id" = 1
666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
667
+  (0.1ms) rollback transaction
668
+  (0.0ms) begin transaction
669
+  (0.0ms) rollback transaction
670
+  (0.0ms) begin transaction
671
+  (0.0ms) rollback transaction
672
+  (0.0ms) begin transaction
673
+  (0.0ms) rollback transaction
674
+  (0.0ms) begin transaction
675
+  (0.0ms) SAVEPOINT active_record_1
676
+ SQL (16.5ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:26:59 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:26:59 UTC +00:00]]
677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
678
+  (0.1ms) rollback transaction
679
+  (0.0ms) begin transaction
680
+  (0.0ms) SAVEPOINT active_record_1
681
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:00 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:00 UTC +00:00]]
682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
683
+  (0.0ms) rollback transaction
684
+  (0.0ms) begin transaction
685
+  (0.0ms) SAVEPOINT active_record_1
686
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:00 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:00 UTC +00:00]]
687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
688
+  (0.0ms) SAVEPOINT active_record_1
689
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-23 15:27:00.002176' WHERE "products"."id" = 1
690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
691
+  (0.1ms) rollback transaction
692
+  (0.0ms) begin transaction
693
+  (0.0ms) SAVEPOINT active_record_1
694
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:00 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:00 UTC +00:00]]
695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
696
+  (0.0ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+  (0.0ms) SAVEPOINT active_record_1
699
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:00 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:00 UTC +00:00]]
700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
701
+  (0.0ms) rollback transaction
702
+  (0.0ms) begin transaction
703
+  (0.0ms) SAVEPOINT active_record_1
704
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:00 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:00 UTC +00:00]]
705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
706
+  (0.0ms) SAVEPOINT active_record_1
707
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
708
+  (0.0ms) SAVEPOINT active_record_1
709
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-23 15:27:00.012828' WHERE "products"."id" = 1
710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
711
+  (0.1ms) rollback transaction
712
+  (0.0ms) begin transaction
713
+  (0.0ms) rollback transaction
714
+  (0.0ms) begin transaction
715
+  (0.0ms) rollback transaction
716
+  (0.0ms) begin transaction
717
+  (0.0ms) rollback transaction
718
+  (0.0ms) begin transaction
719
+  (0.0ms) SAVEPOINT active_record_1
720
+ SQL (16.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:09 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:09 UTC +00:00]]
721
+  (0.0ms) RELEASE SAVEPOINT active_record_1
722
+  (0.0ms) rollback transaction
723
+  (0.0ms) begin transaction
724
+  (0.0ms) SAVEPOINT active_record_1
725
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:09 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:09 UTC +00:00]]
726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
727
+  (0.0ms) rollback transaction
728
+  (0.0ms) begin transaction
729
+  (0.0ms) SAVEPOINT active_record_1
730
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:09 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:09 UTC +00:00]]
731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
732
+  (0.0ms) SAVEPOINT active_record_1
733
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-23 15:27:09.303472' WHERE "products"."id" = 1
734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
735
+  (0.1ms) rollback transaction
736
+  (0.0ms) begin transaction
737
+  (0.0ms) SAVEPOINT active_record_1
738
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:09 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:09 UTC +00:00]]
739
+  (0.0ms) RELEASE SAVEPOINT active_record_1
740
+  (0.0ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+  (0.0ms) SAVEPOINT active_record_1
743
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:09 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:09 UTC +00:00]]
744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
745
+  (0.0ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+  (0.0ms) SAVEPOINT active_record_1
748
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:09 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:09 UTC +00:00]]
749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
750
+  (0.0ms) SAVEPOINT active_record_1
751
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
752
+  (0.0ms) SAVEPOINT active_record_1
753
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-23 15:27:09.314307' WHERE "products"."id" = 1
754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
755
+  (0.1ms) rollback transaction
756
+  (0.0ms) begin transaction
757
+  (0.0ms) rollback transaction
758
+  (0.0ms) begin transaction
759
+  (0.0ms) rollback transaction
760
+  (0.0ms) begin transaction
761
+  (0.0ms) rollback transaction
762
+  (0.0ms) begin transaction
763
+  (0.0ms) SAVEPOINT active_record_1
764
+ SQL (16.9ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:17 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:17 UTC +00:00]]
765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
766
+  (0.1ms) rollback transaction
767
+  (0.0ms) begin transaction
768
+  (0.0ms) SAVEPOINT active_record_1
769
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:17 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:17 UTC +00:00]]
770
+  (0.0ms) RELEASE SAVEPOINT active_record_1
771
+  (0.0ms) rollback transaction
772
+  (0.0ms) begin transaction
773
+  (0.0ms) SAVEPOINT active_record_1
774
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:17 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:17 UTC +00:00]]
775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
776
+  (0.0ms) SAVEPOINT active_record_1
777
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-23 15:27:17.517758' WHERE "products"."id" = 1
778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
779
+  (0.1ms) rollback transaction
780
+  (0.0ms) begin transaction
781
+  (0.0ms) SAVEPOINT active_record_1
782
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:17 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:17 UTC +00:00]]
783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784
+  (0.0ms) rollback transaction
785
+  (0.0ms) begin transaction
786
+  (0.0ms) SAVEPOINT active_record_1
787
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:17 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:17 UTC +00:00]]
788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
789
+  (0.0ms) rollback transaction
790
+  (0.0ms) begin transaction
791
+  (0.0ms) SAVEPOINT active_record_1
792
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:17 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:17 UTC +00:00]]
793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
794
+  (0.0ms) SAVEPOINT active_record_1
795
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
796
+  (0.0ms) SAVEPOINT active_record_1
797
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-23 15:27:17.528742' WHERE "products"."id" = 1
798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
799
+  (0.1ms) rollback transaction
800
+  (0.0ms) begin transaction
801
+  (0.0ms) rollback transaction
802
+  (0.0ms) begin transaction
803
+  (0.0ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+  (0.0ms) rollback transaction
806
+  (0.0ms) begin transaction
807
+  (0.0ms) SAVEPOINT active_record_1
808
+ SQL (16.3ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:36 UTC +00:00]]
809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
810
+  (0.1ms) rollback transaction
811
+  (0.0ms) begin transaction
812
+  (0.0ms) SAVEPOINT active_record_1
813
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:36 UTC +00:00]]
814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
815
+  (0.0ms) rollback transaction
816
+  (0.0ms) begin transaction
817
+  (0.0ms) SAVEPOINT active_record_1
818
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:36 UTC +00:00]]
819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
820
+  (0.0ms) SAVEPOINT active_record_1
821
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "currency" = 'EUR', "updated_at" = '2012-05-23 15:27:36.219577' WHERE "products"."id" = 1
822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
823
+  (0.1ms) rollback transaction
824
+  (0.0ms) begin transaction
825
+  (0.0ms) SAVEPOINT active_record_1
826
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:36 UTC +00:00]]
827
+  (0.0ms) RELEASE SAVEPOINT active_record_1
828
+  (0.0ms) rollback transaction
829
+  (0.0ms) begin transaction
830
+  (0.0ms) SAVEPOINT active_record_1
831
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:36 UTC +00:00]]
832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
833
+  (0.0ms) rollback transaction
834
+  (0.0ms) begin transaction
835
+  (0.0ms) SAVEPOINT active_record_1
836
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "currency", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Wed, 23 May 2012 15:27:36 UTC +00:00], ["currency", nil], ["discount", 150], ["price_cents", 3000], ["updated_at", Wed, 23 May 2012 15:27:36 UTC +00:00]]
837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
838
+  (0.0ms) SAVEPOINT active_record_1
839
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
840
+  (0.0ms) SAVEPOINT active_record_1
841
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-23 15:27:36.230516' WHERE "products"."id" = 1
842
+  (0.0ms) RELEASE SAVEPOINT active_record_1
843
+  (0.1ms) rollback transaction
844
+  (0.0ms) begin transaction
845
+  (0.0ms) rollback transaction
846
+  (0.0ms) begin transaction
847
+  (0.0ms) rollback transaction
848
+  (0.0ms) begin transaction
849
+  (0.0ms) rollback transaction
850
+  (0.0ms) begin transaction
851
+  (0.0ms) SAVEPOINT active_record_1
852
+ SQL (2.7ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
854
+  (0.0ms) SAVEPOINT active_record_1
855
+ SQL (0.2ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
857
+  (0.1ms) rollback transaction
858
+  (0.0ms) begin transaction
859
+  (0.0ms) SAVEPOINT active_record_1
860
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
862
+  (0.0ms) SAVEPOINT active_record_1
863
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
865
+  (0.1ms) rollback transaction
866
+  (0.0ms) begin transaction
867
+  (0.0ms) SAVEPOINT active_record_1
868
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
870
+  (0.0ms) SAVEPOINT active_record_1
871
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
873
+  (0.0ms) SAVEPOINT active_record_1
874
+  (0.1ms) UPDATE "products" SET "price_cents" = 3210, "updated_at" = '2012-05-31 09:33:04.721613' WHERE "products"."id" = 1
875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
876
+  (0.1ms) rollback transaction
877
+  (0.0ms) begin transaction
878
+  (0.0ms) SAVEPOINT active_record_1
879
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
881
+  (0.0ms) SAVEPOINT active_record_1
882
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
884
+  (0.1ms) rollback transaction
885
+  (0.0ms) begin transaction
886
+  (0.0ms) SAVEPOINT active_record_1
887
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
889
+  (0.0ms) SAVEPOINT active_record_1
890
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
892
+  (0.0ms) SAVEPOINT active_record_1
893
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
894
+  (0.0ms) SAVEPOINT active_record_1
895
+  (0.1ms) UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-05-31 09:33:04.732998' WHERE "products"."id" = 1
896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
897
+  (0.1ms) rollback transaction
898
+  (0.0ms) begin transaction
899
+  (0.0ms) SAVEPOINT active_record_1
900
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
902
+  (0.0ms) SAVEPOINT active_record_1
903
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
905
+  (0.1ms) rollback transaction
906
+  (0.0ms) begin transaction
907
+  (0.0ms) SAVEPOINT active_record_1
908
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
910
+  (0.0ms) SAVEPOINT active_record_1
911
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
913
+  (0.1ms) rollback transaction
914
+  (0.0ms) begin transaction
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
918
+  (0.0ms) SAVEPOINT active_record_1
919
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
921
+  (0.1ms) rollback transaction
922
+  (0.0ms) begin transaction
923
+  (0.0ms) SAVEPOINT active_record_1
924
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
926
+  (0.0ms) SAVEPOINT active_record_1
927
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
929
+  (0.0ms) SAVEPOINT active_record_1
930
+  (0.1ms) UPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-05-31 09:33:04.741695' WHERE "products"."id" = 1
931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
932
+  (0.1ms) rollback transaction
933
+  (0.0ms) begin transaction
934
+  (0.0ms) SAVEPOINT active_record_1
935
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
937
+  (0.0ms) SAVEPOINT active_record_1
938
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
940
+  (0.0ms) SAVEPOINT active_record_1
941
+  (0.0ms) UPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-05-31 09:33:04.744171' WHERE "products"."id" = 1
942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
943
+  (0.1ms) rollback transaction
944
+  (0.0ms) begin transaction
945
+  (0.0ms) SAVEPOINT active_record_1
946
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
948
+  (0.0ms) SAVEPOINT active_record_1
949
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
951
+  (0.0ms) SAVEPOINT active_record_1
952
+  (0.1ms) UPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-05-31 09:33:04.746621' WHERE "products"."id" = 1
953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
954
+  (0.1ms) rollback transaction
955
+  (0.0ms) begin transaction
956
+  (0.0ms) SAVEPOINT active_record_1
957
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
959
+  (0.0ms) SAVEPOINT active_record_1
960
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
962
+  (0.0ms) SAVEPOINT active_record_1
963
+  (0.0ms) UPDATE "products" SET "discount" = 500, "updated_at" = '2012-05-31 09:33:04.749148' WHERE "products"."id" = 1
964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
965
+  (0.1ms) rollback transaction
966
+  (0.0ms) begin transaction
967
+  (0.0ms) SAVEPOINT active_record_1
968
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
970
+  (0.0ms) SAVEPOINT active_record_1
971
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
973
+  (0.0ms) SAVEPOINT active_record_1
974
+  (0.1ms) UPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-05-31 09:33:04.751658' WHERE "services"."id" = 1
975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
976
+  (0.1ms) rollback transaction
977
+  (0.0ms) begin transaction
978
+  (0.0ms) SAVEPOINT active_record_1
979
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
981
+  (0.0ms) SAVEPOINT active_record_1
982
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
984
+  (0.0ms) SAVEPOINT active_record_1
985
+ SQL (0.2ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
987
+  (0.0ms) SAVEPOINT active_record_1
988
+ SQL (0.2ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
990
+  (0.0ms) SAVEPOINT active_record_1
991
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
993
+  (0.1ms) rollback transaction
994
+  (0.0ms) begin transaction
995
+  (0.0ms) SAVEPOINT active_record_1
996
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
998
+  (0.0ms) SAVEPOINT active_record_1
999
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1001
+  (0.0ms) SAVEPOINT active_record_1
1002
+ SQL (0.1ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1004
+  (0.0ms) SAVEPOINT active_record_1
1005
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1007
+  (0.0ms) SAVEPOINT active_record_1
1008
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1010
+  (0.1ms) rollback transaction
1011
+  (0.0ms) begin transaction
1012
+  (0.0ms) SAVEPOINT active_record_1
1013
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1015
+  (0.0ms) SAVEPOINT active_record_1
1016
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1018
+  (0.0ms) SAVEPOINT active_record_1
1019
+ SQL (0.1ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1021
+  (0.0ms) SAVEPOINT active_record_1
1022
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1024
+  (0.0ms) SAVEPOINT active_record_1
1025
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1027
+  (0.1ms) rollback transaction
1028
+  (0.0ms) begin transaction
1029
+  (0.0ms) SAVEPOINT active_record_1
1030
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032
+  (0.0ms) SAVEPOINT active_record_1
1033
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1035
+  (0.0ms) SAVEPOINT active_record_1
1036
+ SQL (0.1ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1038
+  (0.0ms) SAVEPOINT active_record_1
1039
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1041
+  (0.0ms) SAVEPOINT active_record_1
1042
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1044
+  (0.1ms) rollback transaction
1045
+  (0.3ms) begin transaction
1046
+  (0.0ms) SAVEPOINT active_record_1
1047
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1049
+  (0.0ms) SAVEPOINT active_record_1
1050
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1052
+  (0.0ms) SAVEPOINT active_record_1
1053
+ SQL (0.1ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1055
+  (0.0ms) SAVEPOINT active_record_1
1056
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1058
+  (0.0ms) SAVEPOINT active_record_1
1059
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1061
+  (0.1ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+  (0.0ms) SAVEPOINT active_record_1
1064
+ SQL (0.2ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1066
+  (0.0ms) SAVEPOINT active_record_1
1067
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1069
+  (0.0ms) SAVEPOINT active_record_1
1070
+ SQL (0.1ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1072
+  (0.0ms) SAVEPOINT active_record_1
1073
+ SQL (0.2ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1075
+  (0.0ms) SAVEPOINT active_record_1
1076
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1078
+  (0.0ms) SAVEPOINT active_record_1
1079
+  (0.1ms) UPDATE "transactions" SET "amount_cents" = 2500, "currency" = 'EUR', "updated_at" = '2012-05-31 09:33:04.799666' WHERE "transactions"."id" = 1
1080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1081
+  (0.1ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+  (0.0ms) SAVEPOINT active_record_1
1084
+ SQL (0.1ms) INSERT INTO "products" ("bonus_cents", "created_at", "discount", "price_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount", 150], ["price_cents", 3000], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1086
+  (0.0ms) SAVEPOINT active_record_1
1087
+ SQL (0.1ms) INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["discount_cents", 120], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1089
+  (0.0ms) SAVEPOINT active_record_1
1090
+ SQL (0.1ms) INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1092
+  (0.0ms) SAVEPOINT active_record_1
1093
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1095
+  (0.0ms) SAVEPOINT active_record_1
1096
+ SQL (0.1ms) INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Thu, 31 May 2012 09:33:04 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Thu, 31 May 2012 09:33:04 UTC +00:00]]
1097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1098
+  (0.1ms) rollback transaction
1099
+  (0.0ms) begin transaction
1100
+  (0.0ms) rollback transaction