money-rails 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/README.md +26 -2
- data/Rakefile +11 -1
- data/lib/money-rails/active_record/monetizable.rb +2 -2
- data/lib/money-rails/hooks.rb +2 -2
- data/lib/money-rails/mongoid/three.rb +40 -0
- data/lib/money-rails/version.rb +1 -1
- data/money-rails.gemspec +1 -1
- data/spec/active_record/monetizable_spec.rb +4 -0
- data/spec/dummy/app/models/transaction.rb +5 -0
- data/spec/dummy/config/mongoid.yml +16 -0
- data/spec/dummy/log/test.log +1573 -0
- data/spec/mongoid/three_spec.rb +31 -0
- data/spec/mongoid/two_spec.rb +1 -1
- metadata +7 -4
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Build Status](https://secure.travis-ci.org/RubyMoney/money-rails.png?branch=master)](http://travis-ci.org/RubyMoney/money-rails)
|
4
4
|
[![Dependency Status](https://gemnasium.com/RubyMoney/money-rails.png)](https://gemnasium.com/RubyMoney/money-rails)
|
5
|
-
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/
|
5
|
+
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/RubyMoney/money-rails)
|
6
6
|
|
7
7
|
## Introduction
|
8
8
|
|
@@ -89,7 +89,7 @@ product.optional_price # => nil
|
|
89
89
|
product.optional_price_cents # => nil
|
90
90
|
```
|
91
91
|
|
92
|
-
### Mongoid 2.
|
92
|
+
### Mongoid 2.x and 3.x
|
93
93
|
|
94
94
|
`Money` is available as a field type to supply during a field definition:
|
95
95
|
|
@@ -128,6 +128,25 @@ obj[:price]
|
|
128
128
|
|
129
129
|
The usual options on `field` as `index`, `default`, ..., are available.
|
130
130
|
|
131
|
+
### Method conversion
|
132
|
+
|
133
|
+
Method return values can be converted in the same way attributes are converted. For example:
|
134
|
+
|
135
|
+
```ruby
|
136
|
+
class Transaction < ActiveRecord::Base
|
137
|
+
|
138
|
+
monetize :price_cents
|
139
|
+
monetize :tax_cents
|
140
|
+
monetize :total_cents
|
141
|
+
def total_cents
|
142
|
+
return price_cents + tax_cents
|
143
|
+
end
|
144
|
+
|
145
|
+
end
|
146
|
+
```
|
147
|
+
|
148
|
+
Now each Transaction object has a method called `total` which returns a Money object.
|
149
|
+
|
131
150
|
### Currencies
|
132
151
|
|
133
152
|
Money-rails supports a set of options to handle currencies for your
|
@@ -318,6 +337,11 @@ without the cents part.
|
|
318
337
|
This will render a formatted money value including the currency symbol and
|
319
338
|
without the cents part.
|
320
339
|
|
340
|
+
## Supported ORMs/ODMs
|
341
|
+
|
342
|
+
* ActiveRecord (>= 3.x)
|
343
|
+
* Mongoid (2.x, 3.x)
|
344
|
+
|
321
345
|
## Maintainers
|
322
346
|
|
323
347
|
* Andreas Loupasakis (https://github.com/alup)
|
data/Rakefile
CHANGED
@@ -20,7 +20,13 @@ task :default => "spec:all"
|
|
20
20
|
task :test => :spec
|
21
21
|
|
22
22
|
namespace :spec do
|
23
|
-
desc "Run Tests against mongoid"
|
23
|
+
desc "Run Tests against mongoid (version 3)"
|
24
|
+
task :mongoid3 do
|
25
|
+
sh "BUNDLE_GEMFILE='gemfiles/mongoid3.gemfile' bundle --quiet"
|
26
|
+
sh "BUNDLE_GEMFILE='gemfiles/mongoid3.gemfile' bundle exec rake -t spec"
|
27
|
+
end
|
28
|
+
|
29
|
+
desc "Run Tests against mongoid (version 2)"
|
24
30
|
task :mongoid2 do
|
25
31
|
sh "BUNDLE_GEMFILE='gemfiles/mongoid2.gemfile' bundle --quiet"
|
26
32
|
sh "BUNDLE_GEMFILE='gemfiles/mongoid2.gemfile' bundle exec rake -t spec"
|
@@ -34,6 +40,10 @@ namespace :spec do
|
|
34
40
|
|
35
41
|
desc "Run Tests against all ORMs"
|
36
42
|
task :all do
|
43
|
+
# Mongoid 3
|
44
|
+
sh "BUNDLE_GEMFILE='gemfiles/mongoid3.gemfile' bundle --quiet"
|
45
|
+
sh "BUNDLE_GEMFILE='gemfiles/mongoid3.gemfile' bundle exec rake -t spec"
|
46
|
+
|
37
47
|
# Mongoid 2
|
38
48
|
sh "BUNDLE_GEMFILE='gemfiles/mongoid2.gemfile' bundle --quiet"
|
39
49
|
sh "BUNDLE_GEMFILE='gemfiles/mongoid2.gemfile' bundle exec rake -t spec"
|
@@ -49,8 +49,8 @@ module MoneyRails
|
|
49
49
|
# Include numericality validation if needed
|
50
50
|
validates_numericality_of subunit_name, :allow_nil => options[:allow_nil] if MoneyRails.include_validations
|
51
51
|
|
52
|
-
define_method name do
|
53
|
-
amount = send(subunit_name)
|
52
|
+
define_method name do |*args|
|
53
|
+
amount = send(subunit_name, *args)
|
54
54
|
attr_currency = send("currency_for_#{name}")
|
55
55
|
|
56
56
|
# Dont create a new Money instance if the values haven't changed
|
data/lib/money-rails/hooks.rb
CHANGED
@@ -8,14 +8,14 @@ module MoneyRails
|
|
8
8
|
end
|
9
9
|
|
10
10
|
# For Mongoid
|
11
|
-
begin; require 'mongoid'; rescue LoadError; end
|
11
|
+
begin; require 'mongoid'; require 'mongoid/version'; rescue LoadError; end
|
12
12
|
if defined? ::Mongoid
|
13
13
|
if ::Mongoid::VERSION =~ /^2(.*)/
|
14
14
|
require 'money-rails/mongoid/two' # Loading the file is enough
|
15
15
|
end
|
16
16
|
|
17
17
|
if ::Mongoid::VERSION =~ /^3(.*)/
|
18
|
-
|
18
|
+
require 'money-rails/mongoid/three'
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
@@ -0,0 +1,40 @@
|
|
1
|
+
class Money
|
2
|
+
|
3
|
+
# Converts an object of this instance into a database friendly value.
|
4
|
+
def mongoize
|
5
|
+
{
|
6
|
+
:cents => cents,
|
7
|
+
:currency_iso => currency.iso_code
|
8
|
+
}
|
9
|
+
end
|
10
|
+
|
11
|
+
class << self
|
12
|
+
|
13
|
+
# Get the object as it was stored in the database, and instantiate
|
14
|
+
# this custom class from it.
|
15
|
+
def demongoize(object)
|
16
|
+
return nil if object.nil?
|
17
|
+
|
18
|
+
::Money.new(object[:cents], object[:currency_iso])
|
19
|
+
end
|
20
|
+
|
21
|
+
# Takes any possible object and converts it to how it would be
|
22
|
+
# stored in the database.
|
23
|
+
def mongoize(object)
|
24
|
+
case object
|
25
|
+
when Money then object.mongoize
|
26
|
+
when Hash then ::Money.new(object[:cents], object[:currency]).mongoize
|
27
|
+
else object
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
# Converts the object that was supplied to a criteria and converts it
|
32
|
+
# into a database friendly form.
|
33
|
+
def evolve(object)
|
34
|
+
case object
|
35
|
+
when Money then object.mongoize
|
36
|
+
else object
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/lib/money-rails/version.rb
CHANGED
data/money-rails.gemspec
CHANGED
@@ -28,5 +28,5 @@ Gem::Specification.new do |s|
|
|
28
28
|
s.add_development_dependency "rspec", "~> 2.10"
|
29
29
|
s.add_development_dependency "rspec-rails", "~> 2.10"
|
30
30
|
s.add_development_dependency "guard-rspec", "~> 1.1"
|
31
|
-
s.add_development_dependency 'database_cleaner', ['>= 0']
|
31
|
+
s.add_development_dependency 'database_cleaner', ['>= 0.8.0']
|
32
32
|
end
|
@@ -234,6 +234,10 @@ if defined? ActiveRecord
|
|
234
234
|
@transaction.amount.currency_as_string.should == "USD"
|
235
235
|
end
|
236
236
|
|
237
|
+
it "constructs the money object from the mapped method value" do
|
238
|
+
@transaction.total.should == Money.new(3000, :usd)
|
239
|
+
end
|
240
|
+
|
237
241
|
end
|
238
242
|
end
|
239
243
|
|
@@ -1,7 +1,23 @@
|
|
1
1
|
development:
|
2
|
+
# For Mongoid 2.x
|
2
3
|
host: localhost
|
3
4
|
database: dummy_development
|
4
5
|
|
6
|
+
# For Mongoid 3.x
|
7
|
+
sessions:
|
8
|
+
default:
|
9
|
+
database: dummy_development
|
10
|
+
hosts:
|
11
|
+
- localhost:27017
|
12
|
+
|
5
13
|
test:
|
14
|
+
# For Mongoid 2.x
|
6
15
|
host: localhost
|
7
16
|
database: dummy_test
|
17
|
+
|
18
|
+
# For Mongoid 3.x
|
19
|
+
sessions:
|
20
|
+
default:
|
21
|
+
database: dummy_test
|
22
|
+
hosts:
|
23
|
+
- localhost:27017
|
data/spec/dummy/log/test.log
CHANGED
@@ -49456,3 +49456,1576 @@ Connecting to database specified by database.yml
|
|
49456
49456
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49457
49457
|
[1m[35m (0.0ms)[0m begin transaction
|
49458
49458
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49459
|
+
Connecting to database specified by database.yml
|
49460
|
+
[1m[36m (138.1ms)[0m [1mDELETE FROM "dummy_products";[0m
|
49461
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'dummy_products';
|
49462
|
+
[1m[36m (110.2ms)[0m [1mDELETE FROM "products";[0m
|
49463
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'products';
|
49464
|
+
[1m[36m (99.1ms)[0m [1mDELETE FROM "services";[0m
|
49465
|
+
[1m[35m (0.2ms)[0m DELETE FROM sqlite_sequence where name = 'services';
|
49466
|
+
[1m[36m (99.6ms)[0m [1mDELETE FROM "transactions";[0m
|
49467
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'transactions';
|
49468
|
+
MOPED: 127.0.0.1:27017 COMMAND database=admin command={:ismaster=>1} (2.9917ms)
|
49469
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (81.1441ms)
|
49470
|
+
MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:drop=>"priceables"} (7.4360ms)
|
49471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49472
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49473
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3808ms)
|
49474
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49475
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49476
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4046ms)
|
49477
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49478
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
49479
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3052ms)
|
49480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49481
|
+
MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=priceables documents=[{"_id"=>"50430c2ceac0746833000001", "price"=>{:cents=>100, :currency_iso=>"EUR"}}] flags=[] (0.1581ms)
|
49482
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49483
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (10.5932ms)
|
49484
|
+
MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:drop=>"priceables"} (0.6757ms)
|
49485
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49486
|
+
MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=priceables documents=[{"_id"=>"50430c2ceac0746833000002", "price"=>{:cents=>100, :currency_iso=>"EUR"}}] flags=[] (0.2289ms)
|
49487
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49488
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.5617ms)
|
49489
|
+
MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:drop=>"priceables"} (0.6890ms)
|
49490
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49491
|
+
MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=priceables documents=[{"_id"=>"50430c2ceac0746833000003", "price"=>{:cents=>100, :currency_iso=>"EUR"}}] flags=[] (0.1996ms)
|
49492
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49493
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4671ms)
|
49494
|
+
MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:drop=>"priceables"} (0.5670ms)
|
49495
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49496
|
+
MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=priceables documents=[{"_id"=>"50430c2ceac0746833000004", "price"=>{:cents=>100, :currency_iso=>"EUR"}}] flags=[] (0.7427ms)
|
49497
|
+
MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=priceables documents=[{"_id"=>"50430c2ceac0746833000005", "price"=>nil}] flags=[] (0.0942ms)
|
49498
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49499
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.5260ms)
|
49500
|
+
MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:drop=>"priceables"} (0.5918ms)
|
49501
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49502
|
+
MOPED: 127.0.0.1:27017 INSERT database=dummy_test collection=priceables documents=[{"_id"=>"50430c2ceac0746833000006", "price"=>{:cents=>100, :currency_iso=>"EUR"}}] flags=[] (0.1585ms)
|
49503
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=priceables selector={"$query"=>{"price"=>{:cents=>100, :currency_iso=>"EUR"}}, "$orderby"=>{:_id=>1}} flags=[:slave_ok] limit=-1 skip=0 fields=nil (0.6487ms)
|
49504
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49505
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3347ms)
|
49506
|
+
MOPED: 127.0.0.1:27017 COMMAND database=dummy_test command={:drop=>"priceables"} (0.5896ms)
|
49507
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49508
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
49509
|
+
[1m[36mSQL (19.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49510
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49511
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
49512
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49513
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49514
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49515
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4499ms)
|
49516
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49518
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49519
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
49521
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49522
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49523
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49524
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.6039ms)
|
49525
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
49526
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49527
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49528
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49529
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49530
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49531
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49532
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49533
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "price_cents" = 3210, "updated_at" = '2012-09-02 07:35:08.733303' WHERE "products"."id" = 1[0m
|
49534
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49535
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49536
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.6115ms)
|
49537
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49538
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49539
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49540
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49541
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49542
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49543
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49544
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49545
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4399ms)
|
49546
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49547
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49548
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49549
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49550
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49551
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49552
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49553
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49554
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
49555
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
49556
|
+
[1m[35m (0.2ms)[0m UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-09-02 07:35:08.773756' WHERE "products"."id" = 1
|
49557
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49558
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49559
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4542ms)
|
49560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49562
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49563
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49565
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49566
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49567
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49568
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
49569
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49570
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3884ms)
|
49571
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49572
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49573
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49574
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49575
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49576
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49577
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49578
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49579
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:08.787283' WHERE "products"."id" = 1[0m
|
49580
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49581
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49582
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4623ms)
|
49583
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49584
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49585
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49586
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49587
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49588
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49589
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49590
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49591
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3319ms)
|
49592
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49593
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49594
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49595
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49596
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49597
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49598
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49599
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49600
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4115ms)
|
49601
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49602
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49603
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49604
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49605
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49606
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49607
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49608
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49609
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3922ms)
|
49610
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49611
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49612
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49613
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49614
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49615
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49616
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49617
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49618
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:08.808778' WHERE "products"."id" = 1
|
49619
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49620
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49621
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4449ms)
|
49622
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49623
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49624
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49625
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49627
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49628
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49629
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49630
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:08.815464' WHERE "products"."id" = 1[0m
|
49631
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49632
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49633
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 200, "updated_at" = '2012-09-02 07:35:08.817438' WHERE "services"."id" = 1
|
49634
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49635
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49636
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4027ms)
|
49637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49638
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49639
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49640
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49641
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49642
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49643
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49644
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49645
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:08.824206' WHERE "products"."id" = 1[0m
|
49646
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49647
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49648
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 200, "updated_at" = '2012-09-02 07:35:08.825496' WHERE "services"."id" = 1
|
49649
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49650
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49651
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.5543ms)
|
49652
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49653
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49654
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49655
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49656
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49657
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49658
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49659
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49660
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-09-02 07:35:08.831580' WHERE "products"."id" = 1[0m
|
49661
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49662
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49663
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "charge_cents" = 200, "updated_at" = '2012-09-02 07:35:08.832934' WHERE "services"."id" = 1
|
49664
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49665
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49666
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3767ms)
|
49667
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49668
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49669
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49670
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49671
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49672
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49673
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49674
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49675
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-09-02 07:35:08.839272' WHERE "products"."id" = 1[0m
|
49676
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49677
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49678
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "charge_cents" = 200, "updated_at" = '2012-09-02 07:35:08.840675' WHERE "services"."id" = 1
|
49679
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49680
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49681
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3757ms)
|
49682
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49683
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49684
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49685
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49687
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49688
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49689
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49690
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "discount" = 500, "updated_at" = '2012-09-02 07:35:08.846962' WHERE "products"."id" = 1[0m
|
49691
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49692
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49693
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4411ms)
|
49694
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49695
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49696
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49697
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49698
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49699
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49700
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49701
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49702
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "discount" = 500, "updated_at" = '2012-09-02 07:35:08.853710' WHERE "products"."id" = 1
|
49703
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49704
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49705
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3791ms)
|
49706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49708
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49709
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49710
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49711
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49712
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49713
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49714
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-09-02 07:35:08.859771' WHERE "services"."id" = 1[0m
|
49715
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49716
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49717
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3884ms)
|
49718
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49719
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49720
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49721
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49722
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49723
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49724
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49725
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49726
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-09-02 07:35:08.866000' WHERE "services"."id" = 1
|
49727
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49728
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49729
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4823ms)
|
49730
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49732
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49733
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49734
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49735
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49736
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49737
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49738
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:08.872708' WHERE "products"."id" = 1[0m
|
49739
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49740
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49741
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4315ms)
|
49742
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49743
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49744
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49745
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49746
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49747
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49748
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49749
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49750
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 320], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 350], ["optional_price_cents", nil], ["price_cents", 5320], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49751
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49752
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49753
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3850ms)
|
49754
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49756
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49757
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49758
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49759
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49760
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49761
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49762
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:08.885117' WHERE "products"."id" = 1[0m
|
49763
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49764
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49765
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3612ms)
|
49766
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49767
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49768
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49769
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49770
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49771
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49772
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49773
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49774
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 320], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 350], ["optional_price_cents", nil], ["price_cents", 5320], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49775
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49776
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49777
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3819ms)
|
49778
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49779
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49780
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49781
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49782
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49783
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49784
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49786
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
49787
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49788
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4478ms)
|
49789
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49790
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49791
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49792
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49793
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49794
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49795
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49796
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49797
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
49798
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49799
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4139ms)
|
49800
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49801
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49802
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49803
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49804
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49805
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49806
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49807
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
49808
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49809
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49810
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
49811
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49812
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49813
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49814
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49815
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49816
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49817
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", "EUR"], ["price_cents", 10], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49818
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49819
|
+
[1m[35mDummyProduct Load (0.2ms)[0m SELECT "dummy_products".* FROM "dummy_products" WHERE "dummy_products"."id" = ? LIMIT 1 [["id", 3]]
|
49820
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49821
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4628ms)
|
49822
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49823
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49824
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49825
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49826
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49827
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49828
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49829
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49830
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49831
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49832
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49833
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49834
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49835
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49836
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49837
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49838
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49839
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4392ms)
|
49840
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49841
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49842
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49843
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49845
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49846
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49847
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49848
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49849
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49850
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49851
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49852
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49853
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49854
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49855
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49856
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49857
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4103ms)
|
49858
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49859
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49860
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49861
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49862
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49863
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49864
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49865
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49866
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49867
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49868
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49869
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49870
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49871
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49872
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49873
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49874
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49875
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4463ms)
|
49876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49877
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49878
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49879
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49881
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49882
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49883
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49884
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49885
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49886
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49887
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49888
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49889
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49890
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49891
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49892
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49893
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3703ms)
|
49894
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49895
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49896
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49897
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49898
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49899
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49900
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49901
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49902
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49903
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49904
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49905
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49906
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49907
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49908
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49909
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49910
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49911
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3986ms)
|
49912
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49913
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
49914
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49915
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
49916
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49917
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49918
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49919
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49920
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49921
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49922
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49923
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49924
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49925
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49926
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49927
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49928
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49929
|
+
[1m[35m (0.2ms)[0m UPDATE "transactions" SET "amount_cents" = 2500, "currency" = 'EUR', "updated_at" = '2012-09-02 07:35:08.994656' WHERE "transactions"."id" = 1
|
49930
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49931
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
49932
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4292ms)
|
49933
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
49934
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49935
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:08 UTC +00:00]]
|
49936
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49937
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49938
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00]]
|
49939
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49940
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49941
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00]]
|
49942
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49943
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
49944
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00]]
|
49945
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
49946
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
49947
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:09 UTC +00:00]]
|
49948
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
49949
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49950
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4048ms)
|
49951
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49952
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49953
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.2804ms)
|
49954
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49955
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49956
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.5016ms)
|
49957
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49958
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49959
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3691ms)
|
49960
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49961
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49962
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3872ms)
|
49963
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49964
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49965
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3939ms)
|
49966
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49967
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49968
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3288ms)
|
49969
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49970
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
49971
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3664ms)
|
49972
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49973
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49974
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3800ms)
|
49975
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49976
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49977
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3266ms)
|
49978
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49979
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49980
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3271ms)
|
49981
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49982
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49983
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3304ms)
|
49984
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49985
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49986
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4063ms)
|
49987
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49988
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49989
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3834ms)
|
49990
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49991
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
49992
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.4587ms)
|
49993
|
+
[1m[35m (0.1ms)[0m begin transaction
|
49994
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
49995
|
+
MOPED: 127.0.0.1:27017 QUERY database=dummy_test collection=system.namespaces selector={:name=>{"$not"=>/system|\$/}} flags=[:slave_ok] limit=0 skip=0 fields=nil (0.3631ms)
|
49996
|
+
MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
|
49997
|
+
MONGODB (0ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
|
49998
|
+
Connecting to database specified by database.yml
|
49999
|
+
[1m[36m (105.0ms)[0m [1mDELETE FROM "dummy_products";[0m
|
50000
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'dummy_products';
|
50001
|
+
[1m[36m (76.7ms)[0m [1mDELETE FROM "products";[0m
|
50002
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'products';
|
50003
|
+
[1m[36m (77.0ms)[0m [1mDELETE FROM "services";[0m
|
50004
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'services';
|
50005
|
+
[1m[36m (66.0ms)[0m [1mDELETE FROM "transactions";[0m
|
50006
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'transactions';
|
50007
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50008
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
50009
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50010
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50011
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50012
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50013
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50014
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50015
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
50016
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50017
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50018
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50019
|
+
MONGODB (0ms) dummy_test['$cmd'].find({:create=>"priceables"}).limit(-1)
|
50020
|
+
MONGODB (0ms) dummy_test['priceables'].insert([{"_id"=>BSON::ObjectId('50430c39eac0743376000001'), "price"=>{:cents=>100, :currency_iso=>"EUR"}}])
|
50021
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50022
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50023
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50024
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50025
|
+
MONGODB (0ms) dummy_test['priceables'].insert([{"_id"=>BSON::ObjectId('50430c39eac0743376000002'), "price"=>{:cents=>100, :currency_iso=>"EUR"}}])
|
50026
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50027
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50028
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50029
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50030
|
+
MONGODB (0ms) dummy_test['priceables'].insert([{"_id"=>BSON::ObjectId('50430c39eac0743376000003'), "price"=>{:cents=>100, :currency_iso=>"EUR"}}])
|
50031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50032
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50033
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50034
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50035
|
+
MONGODB (0ms) dummy_test['priceables'].insert([{"_id"=>BSON::ObjectId('50430c39eac0743376000004'), "price"=>nil}])
|
50036
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50037
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50038
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50039
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50040
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
50041
|
+
[1m[36mSQL (7.2ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50042
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50043
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50044
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50046
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50047
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50048
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50049
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50050
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50051
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50052
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50053
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50054
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50055
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50056
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50057
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50058
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50059
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50060
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50061
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50062
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50063
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50064
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50066
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50067
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "price_cents" = 3210, "updated_at" = '2012-09-02 07:35:21.887448' WHERE "products"."id" = 1[0m
|
50068
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50069
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50070
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50071
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50072
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50073
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50074
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50075
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50076
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50077
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50078
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50079
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50080
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50081
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50082
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50084
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50085
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50086
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50087
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50088
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50089
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50090
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
50091
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50092
|
+
[1m[35m (0.2ms)[0m UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-09-02 07:35:21.955870' WHERE "products"."id" = 1
|
50093
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50094
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50095
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50096
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50097
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50098
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50099
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50100
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50102
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50103
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50105
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
50106
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50107
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50108
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50109
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50110
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50111
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50112
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50113
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50114
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50115
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50116
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50117
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:21.970604' WHERE "products"."id" = 1[0m
|
50118
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50119
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50120
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50121
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50122
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50123
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50124
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50125
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50127
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50128
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50129
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50130
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50131
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50132
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50133
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50134
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50135
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50137
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50138
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50139
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50140
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50141
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50142
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50144
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50145
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50146
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50147
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50148
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50149
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50150
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50151
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50152
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50153
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50154
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50155
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50156
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50157
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50158
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50159
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50160
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:21.993430' WHERE "products"."id" = 1
|
50161
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50162
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50163
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50164
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50165
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50166
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50167
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50168
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50169
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50170
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:21 UTC +00:00]]
|
50171
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50172
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50173
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:22.000093' WHERE "products"."id" = 1[0m
|
50174
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50175
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50176
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 200, "updated_at" = '2012-09-02 07:35:22.001713' WHERE "services"."id" = 1
|
50177
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50178
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50179
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50180
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50181
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50182
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50183
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50184
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50185
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50186
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50187
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50188
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50189
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:22.008528' WHERE "products"."id" = 1[0m
|
50190
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50192
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 200, "updated_at" = '2012-09-02 07:35:22.009722' WHERE "services"."id" = 1
|
50193
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50195
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50196
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50197
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50199
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50200
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50201
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50202
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50203
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50204
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50205
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-09-02 07:35:22.015525' WHERE "products"."id" = 1[0m
|
50206
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50207
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50208
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "charge_cents" = 200, "updated_at" = '2012-09-02 07:35:22.017278' WHERE "services"."id" = 1
|
50209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50210
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50211
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50212
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50213
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50214
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50215
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50216
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50217
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50218
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50219
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50220
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50221
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-09-02 07:35:22.023743' WHERE "products"."id" = 1[0m
|
50222
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50223
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50224
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "charge_cents" = 200, "updated_at" = '2012-09-02 07:35:22.025113' WHERE "services"."id" = 1
|
50225
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50226
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50227
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50228
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50229
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50230
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50231
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50232
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50233
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50234
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50235
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50236
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50237
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "discount" = 500, "updated_at" = '2012-09-02 07:35:22.031473' WHERE "products"."id" = 1[0m
|
50238
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50239
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50240
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50241
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50242
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50243
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50244
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50245
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50246
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50247
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50248
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50249
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50250
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "discount" = 500, "updated_at" = '2012-09-02 07:35:22.038597' WHERE "products"."id" = 1
|
50251
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50252
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50253
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50254
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50255
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50257
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50258
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50259
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50260
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50261
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50262
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50263
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-09-02 07:35:22.044584' WHERE "services"."id" = 1[0m
|
50264
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50265
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
50266
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50267
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50268
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50269
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50270
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50271
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50272
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50273
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50274
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50275
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50276
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-09-02 07:35:22.051702' WHERE "services"."id" = 1
|
50277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50278
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50279
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50280
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50281
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50282
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50283
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50284
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50285
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50286
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50287
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50288
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50289
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:22.059035' WHERE "products"."id" = 1[0m
|
50290
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50291
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50292
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50293
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50294
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50295
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50296
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50297
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50298
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50299
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50300
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50301
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50302
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 320], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 350], ["optional_price_cents", nil], ["price_cents", 5320], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50303
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50304
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50305
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50306
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50307
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50308
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50309
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50310
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50311
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50312
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50313
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50314
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50315
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:22.113234' WHERE "products"."id" = 1[0m
|
50316
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50317
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50318
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50319
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50320
|
+
[1m[35m (0.2ms)[0m begin transaction
|
50321
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50322
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50323
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50324
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50325
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50326
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50327
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50328
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 320], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 350], ["optional_price_cents", nil], ["price_cents", 5320], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50329
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50330
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50331
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50332
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50333
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50334
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50335
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50336
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50337
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50338
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50339
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50340
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50341
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
50342
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50343
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50344
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50345
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50346
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50347
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50348
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50349
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50350
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50351
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50352
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50353
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
50354
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50355
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50356
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50357
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50358
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50359
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50360
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50362
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50363
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50364
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
50365
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50366
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50367
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50368
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50369
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50370
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50371
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50372
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50373
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50374
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", "EUR"], ["price_cents", 10], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50375
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50376
|
+
[1m[35mDummyProduct Load (0.2ms)[0m SELECT "dummy_products".* FROM "dummy_products" WHERE "dummy_products"."id" = ? LIMIT 1 [["id", 3]]
|
50377
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50378
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50379
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50380
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50381
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50382
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50383
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50384
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50385
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50386
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50387
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50388
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50389
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50390
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50391
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50392
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50393
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50394
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50395
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50396
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50397
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50398
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50399
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50400
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50401
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50402
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50403
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50404
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50405
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50406
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50407
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50408
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50409
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50410
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50411
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50412
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50413
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50414
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50415
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50416
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50417
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50418
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50419
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50420
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50421
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50422
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50423
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50424
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50425
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50426
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50427
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50428
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50429
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50430
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50431
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50432
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50433
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50434
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50435
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50436
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50437
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50438
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50439
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50440
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50441
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50442
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50443
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50444
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50445
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50446
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50447
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50448
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50449
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50450
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50451
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50452
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50453
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50454
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50455
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50456
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50457
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50458
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50459
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50460
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50461
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50462
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50463
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50464
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50465
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50466
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50467
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50468
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50469
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50470
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50471
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50472
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50473
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50474
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50476
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
50477
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50478
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50479
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50480
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50481
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50482
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50483
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50484
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50485
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50486
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50487
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50488
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50489
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50490
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50491
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50492
|
+
[1m[35m (0.1ms)[0m UPDATE "transactions" SET "amount_cents" = 2500, "currency" = 'EUR', "updated_at" = '2012-09-02 07:35:22.224420' WHERE "transactions"."id" = 1
|
50493
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50494
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50495
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50496
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50497
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50498
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50499
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50500
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50501
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50502
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50503
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50504
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50505
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50506
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50507
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50508
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50509
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50510
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50511
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:22 UTC +00:00]]
|
50512
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50513
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50514
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50515
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50516
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50517
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50518
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50519
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50520
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50521
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50522
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50523
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50524
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50525
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50526
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50527
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50528
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50529
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50530
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50531
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50532
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50533
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50534
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50535
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50536
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50537
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50538
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50539
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50540
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50541
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50542
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50543
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50544
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50545
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50546
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50547
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50548
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50549
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50550
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50551
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50552
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50553
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50554
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50555
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50556
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50557
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50558
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50559
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50560
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50561
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50562
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50563
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50564
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50565
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50566
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50567
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50568
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50569
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50570
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50571
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50572
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50573
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
50574
|
+
MONGODB (0ms) dummy_test['system.namespaces'].find({})
|
50575
|
+
MONGODB (0ms) dummy_test['priceables'].remove({})
|
50576
|
+
Connecting to database specified by database.yml
|
50577
|
+
[1m[36m (82.3ms)[0m [1mDELETE FROM "dummy_products";[0m
|
50578
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'dummy_products';
|
50579
|
+
[1m[36m (65.7ms)[0m [1mDELETE FROM "products";[0m
|
50580
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'products';
|
50581
|
+
[1m[36m (65.9ms)[0m [1mDELETE FROM "services";[0m
|
50582
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'services';
|
50583
|
+
[1m[36m (76.7ms)[0m [1mDELETE FROM "transactions";[0m
|
50584
|
+
[1m[35m (0.1ms)[0m DELETE FROM sqlite_sequence where name = 'transactions';
|
50585
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50586
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50588
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50589
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50590
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50591
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50592
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
50593
|
+
[1m[36mSQL (5.8ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:30 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:30 UTC +00:00]]
|
50594
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50595
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50596
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:30 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:30 UTC +00:00]]
|
50597
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50598
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
50599
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50601
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50602
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50603
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50604
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50605
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50606
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50607
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50608
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50609
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50610
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50611
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50612
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50613
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50614
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50615
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "price_cents" = 3210, "updated_at" = '2012-09-02 07:35:31.017351' WHERE "products"."id" = 1[0m
|
50616
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50617
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50618
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50619
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50620
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50621
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50623
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50624
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50625
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50626
|
+
[1m[35m (0.0ms)[0m begin transaction
|
50627
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50628
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50629
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50631
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50634
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
50635
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50636
|
+
[1m[35m (0.2ms)[0m UPDATE "products" SET "price_cents" = 2000, "updated_at" = '2012-09-02 07:35:31.038042' WHERE "products"."id" = 1
|
50637
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50638
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50639
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50640
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50641
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50642
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50643
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50644
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50645
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50646
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50647
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
50648
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50649
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50650
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
50651
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50652
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50653
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50654
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50655
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50656
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50657
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:31.049911' WHERE "products"."id" = 1[0m
|
50658
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50659
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50660
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50661
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50662
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50663
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50665
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50666
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50667
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50668
|
+
[1m[35m (0.0ms)[0m begin transaction
|
50669
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50670
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50671
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50672
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50673
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50674
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50675
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50676
|
+
[1m[35m (0.0ms)[0m begin transaction
|
50677
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50678
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50679
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50680
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50681
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50682
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50683
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50684
|
+
[1m[35m (0.0ms)[0m begin transaction
|
50685
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50686
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50687
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50688
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50689
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50690
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50691
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50692
|
+
[1m[35m (0.2ms)[0m UPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:31.067200' WHERE "products"."id" = 1
|
50693
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50694
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50695
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50696
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50697
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50698
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50699
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50700
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50701
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50702
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50703
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:31.072844' WHERE "products"."id" = 1[0m
|
50704
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50705
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50706
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 200, "updated_at" = '2012-09-02 07:35:31.074218' WHERE "services"."id" = 1
|
50707
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50708
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50710
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50711
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50712
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50713
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50714
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50715
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50716
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50717
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "products" SET "price_cents" = 2500, "updated_at" = '2012-09-02 07:35:31.079647' WHERE "products"."id" = 1[0m
|
50718
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50719
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50720
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 200, "updated_at" = '2012-09-02 07:35:31.081087' WHERE "services"."id" = 1
|
50721
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50722
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50723
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50724
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50725
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50726
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50727
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50728
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50729
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50730
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50731
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-09-02 07:35:31.086519' WHERE "products"."id" = 1[0m
|
50732
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50733
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50734
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "charge_cents" = 200, "updated_at" = '2012-09-02 07:35:31.087748' WHERE "services"."id" = 1
|
50735
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50736
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50737
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50738
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50739
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50740
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50741
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50742
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50743
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50744
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50745
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "bonus_cents" = 2500, "updated_at" = '2012-09-02 07:35:31.093217' WHERE "products"."id" = 1[0m
|
50746
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50747
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50748
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "charge_cents" = 200, "updated_at" = '2012-09-02 07:35:31.094481' WHERE "services"."id" = 1
|
50749
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50750
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50751
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50752
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50753
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50754
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50755
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50756
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50757
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50758
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50759
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "discount" = 500, "updated_at" = '2012-09-02 07:35:31.099616' WHERE "products"."id" = 1[0m
|
50760
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50761
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50762
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50763
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50764
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50765
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50766
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50767
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50768
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50769
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50770
|
+
[1m[35m (0.1ms)[0m UPDATE "products" SET "discount" = 500, "updated_at" = '2012-09-02 07:35:31.105283' WHERE "products"."id" = 1
|
50771
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50772
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50773
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50774
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50775
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50776
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50777
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50778
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50779
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50780
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50781
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-09-02 07:35:31.110683' WHERE "services"."id" = 1[0m
|
50782
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50783
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50784
|
+
[1m[35m (0.0ms)[0m begin transaction
|
50785
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50786
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50787
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50788
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50789
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50790
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50791
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50792
|
+
[1m[35m (0.1ms)[0m UPDATE "services" SET "discount_cents" = 500, "updated_at" = '2012-09-02 07:35:31.115827' WHERE "services"."id" = 1
|
50793
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50794
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50796
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50797
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50798
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50799
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50800
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50801
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50802
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50803
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:31.120682' WHERE "products"."id" = 1[0m
|
50804
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50805
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50806
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50807
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50808
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50809
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50810
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50811
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50812
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50813
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50814
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 320], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 350], ["optional_price_cents", nil], ["price_cents", 5320], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50815
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50816
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50817
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50818
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50819
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50820
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50821
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50822
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50823
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50824
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50825
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "products" SET "optional_price_cents" = NULL, "updated_at" = '2012-09-02 07:35:31.130868' WHERE "products"."id" = 1[0m
|
50826
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50827
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
50828
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50829
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50830
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50831
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50832
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50833
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50834
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50835
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50836
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 320], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 350], ["optional_price_cents", nil], ["price_cents", 5320], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50837
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50838
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50840
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50841
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50842
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50843
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50844
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50845
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50846
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50847
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
50848
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50849
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50850
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50851
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50852
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50853
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50854
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50855
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50856
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50857
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
50858
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50859
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50860
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50861
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50862
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50863
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50864
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50865
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50866
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
50867
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50868
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50869
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50870
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50873
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50874
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50875
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50876
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", "EUR"], ["price_cents", 10], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50877
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50878
|
+
[1m[35mDummyProduct Load (0.2ms)[0m SELECT "dummy_products".* FROM "dummy_products" WHERE "dummy_products"."id" = ? LIMIT 1 [["id", 3]]
|
50879
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50880
|
+
[1m[35m (0.0ms)[0m begin transaction
|
50881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50882
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50883
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50884
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50885
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50886
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50887
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50888
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50889
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50890
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50891
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50892
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50893
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50894
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50895
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50896
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50897
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50898
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50899
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50900
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50901
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50902
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50903
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50904
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50905
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50906
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50907
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50908
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50909
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50910
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50911
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50912
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50913
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50914
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50915
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50916
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50917
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50918
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50919
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50920
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50921
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50922
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50923
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50924
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50925
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50926
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50927
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50928
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50929
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50930
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50931
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50932
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50933
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50935
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50936
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50937
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50938
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50939
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50940
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
50941
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50942
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50943
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50944
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50945
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50946
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50947
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
50948
|
+
[1m[35m (0.1ms)[0m begin transaction
|
50949
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50950
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50951
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50952
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50953
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50954
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50955
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50956
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?) [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50957
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50958
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50959
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50960
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50961
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50962
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50963
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50964
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50965
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
50966
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50967
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50968
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50969
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50970
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50971
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50974
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50975
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
50976
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50977
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50978
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50979
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50980
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50981
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50982
|
+
[1m[35m (0.1ms)[0m UPDATE "transactions" SET "amount_cents" = 2500, "currency" = 'EUR', "updated_at" = '2012-09-02 07:35:31.265715' WHERE "transactions"."id" = 1
|
50983
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50984
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
50985
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
50986
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50987
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "products" ("bonus_cents", "created_at", "discount", "optional_price_cents", "price_cents", "sale_price_amount", "sale_price_currency_code", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["bonus_cents", 200], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount", 150], ["optional_price_cents", 10000], ["price_cents", 3000], ["sale_price_amount", 0], ["sale_price_currency_code", nil], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50988
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50989
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50990
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "services" ("charge_cents", "created_at", "discount_cents", "updated_at") VALUES (?, ?, ?, ?) [["charge_cents", 2000], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["discount_cents", 120], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50991
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50992
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50993
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "transactions" ("amount_cents", "created_at", "currency", "tax_cents", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["amount_cents", 2400], ["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["tax_cents", 600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50994
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
50995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
50996
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", :usd], ["price_cents", 2400], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
50997
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
50998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
50999
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "dummy_products" ("created_at", "currency", "price_cents", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00], ["currency", nil], ["price_cents", 2600], ["updated_at", Sun, 02 Sep 2012 07:35:31 UTC +00:00]]
|
51000
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
51001
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
51002
|
+
[1m[35m (0.0ms)[0m begin transaction
|
51003
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51004
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51005
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
51006
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51007
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51008
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51009
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51010
|
+
[1m[35m (0.0ms)[0m begin transaction
|
51011
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
51012
|
+
[1m[35m (0.0ms)[0m begin transaction
|
51013
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
51014
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51015
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
51016
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51017
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
51018
|
+
[1m[35m (0.0ms)[0m begin transaction
|
51019
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51020
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51021
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51022
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51023
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51024
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51025
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51026
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51027
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51028
|
+
[1m[35m (0.0ms)[0m begin transaction
|
51029
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
51030
|
+
[1m[35m (0.1ms)[0m begin transaction
|
51031
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|