human_attributes 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +9 -2
- data/README.md +88 -26
- data/human_attributes.gemspec +2 -1
- data/lib/human_attributes.rb +0 -1
- data/lib/human_attributes/engine.rb +1 -1
- data/lib/human_attributes/errors.rb +7 -7
- data/lib/human_attributes/{active_record_extension.rb → extension.rb} +8 -2
- data/lib/human_attributes/version.rb +1 -1
- data/spec/dummy/app/decorators/purchase_decorator.rb +5 -0
- data/spec/dummy/app/models/purchase.rb +2 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/log/development.log +28 -0
- data/spec/dummy/log/test.log +1687 -0
- data/spec/dummy/spec/lib/active_record_extension_spec.rb +1 -0
- metadata +24 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4d6f0fb624d3950053b3f1b8bd90e8636b8e6b5
|
|
4
|
+
data.tar.gz: 9cef22ac036c4d4bb7393e43d3feef399b7d7bd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 471d7481a168069a4df9f6fcd3edb98fb0ed3537c48626ddf1c04445166baf0f2a746f15077127cd4f5db85e36c42d7f86703173fbe5954dd4585718c5b76077
|
|
7
|
+
data.tar.gz: dc8a6b407d4c9379fbf188f76b8a7bce9dbbcc7013d0e0bc60ed21f5d08188e4e0f3ef0527987dc5c3897195881c76bad1fe1a3a0af0d2209fb06c11dc7a7200
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
human_attributes (0.
|
|
5
|
-
enumerize (~> 1, >= 1.1.1)
|
|
4
|
+
human_attributes (0.3.0)
|
|
6
5
|
factory_girl_rails (~> 4.6)
|
|
7
6
|
rails (~> 4.2, >= 4.2.0)
|
|
8
7
|
|
|
@@ -49,6 +48,11 @@ GEM
|
|
|
49
48
|
coderay (1.1.1)
|
|
50
49
|
concurrent-ruby (1.0.2)
|
|
51
50
|
diff-lcs (1.2.5)
|
|
51
|
+
draper (2.1.0)
|
|
52
|
+
actionpack (>= 3.0)
|
|
53
|
+
activemodel (>= 3.0)
|
|
54
|
+
activesupport (>= 3.0)
|
|
55
|
+
request_store (~> 1.0)
|
|
52
56
|
enumerize (1.1.1)
|
|
53
57
|
activesupport (>= 3.2)
|
|
54
58
|
erubis (2.7.0)
|
|
@@ -135,6 +139,7 @@ GEM
|
|
|
135
139
|
rb-fsevent (0.9.7)
|
|
136
140
|
rb-inotify (0.9.7)
|
|
137
141
|
ffi (>= 0.5.0)
|
|
142
|
+
request_store (1.3.1)
|
|
138
143
|
rspec (3.4.0)
|
|
139
144
|
rspec-core (~> 3.4.0)
|
|
140
145
|
rspec-expectations (~> 3.4.0)
|
|
@@ -176,6 +181,8 @@ PLATFORMS
|
|
|
176
181
|
ruby
|
|
177
182
|
|
|
178
183
|
DEPENDENCIES
|
|
184
|
+
draper (~> 2.1.0)
|
|
185
|
+
enumerize (~> 1, >= 1.1.1)
|
|
179
186
|
guard-rspec (~> 4.7)
|
|
180
187
|
human_attributes!
|
|
181
188
|
pry
|
data/README.md
CHANGED
|
@@ -16,6 +16,7 @@ It's a Gem to convert ActiveRecord models' attributes and methods to human reada
|
|
|
16
16
|
- [Suffix](#suffix)
|
|
17
17
|
- [Multiple Formatters](#multiple-formatters)
|
|
18
18
|
- [Humanize Active Record Attributes](#humanize-active-record-attributes)
|
|
19
|
+
- [Integration with Draper Gem](#draper-integration)
|
|
19
20
|
- [Rake Task](#rake-task)
|
|
20
21
|
|
|
21
22
|
## Installation
|
|
@@ -364,31 +365,83 @@ The `humanize_attributes` method will infer from the attribute's data type which
|
|
|
364
365
|
With our `Purchase` model we will get:
|
|
365
366
|
|
|
366
367
|
```ruby
|
|
367
|
-
human_id
|
|
368
|
-
human_paid
|
|
369
|
-
human_commission
|
|
370
|
-
human_quantity
|
|
371
|
-
human_expired_at
|
|
372
|
-
expired_at_to_short_date
|
|
373
|
-
expired_at_to_long_date
|
|
374
|
-
expired_at_to_short_datetime
|
|
375
|
-
expired_at_to_long_datetime
|
|
376
|
-
human_amount
|
|
377
|
-
human_created_at
|
|
378
|
-
created_at_to_short_date
|
|
379
|
-
created_at_to_long_date
|
|
380
|
-
created_at_to_short_datetime
|
|
381
|
-
created_at_to_long_datetime
|
|
382
|
-
human_updated_at
|
|
383
|
-
updated_at_to_short_date
|
|
384
|
-
updated_at_to_long_date
|
|
385
|
-
updated_at_to_short_datetime
|
|
386
|
-
updated_at_to_long_datetime
|
|
387
|
-
human_state => Pending
|
|
368
|
+
purchase.human_id
|
|
369
|
+
purchase.human_paid
|
|
370
|
+
purchase.human_commission
|
|
371
|
+
purchase.human_quantity
|
|
372
|
+
purchase.human_expired_at
|
|
373
|
+
purchase.expired_at_to_short_date
|
|
374
|
+
purchase.expired_at_to_long_date
|
|
375
|
+
purchase.expired_at_to_short_datetime
|
|
376
|
+
purchase.expired_at_to_long_datetime
|
|
377
|
+
purchase.human_amount
|
|
378
|
+
purchase.human_created_at
|
|
379
|
+
purchase.created_at_to_short_date
|
|
380
|
+
purchase.created_at_to_long_date
|
|
381
|
+
purchase.created_at_to_short_datetime
|
|
382
|
+
purchase.created_at_to_long_datetime
|
|
383
|
+
purchase.human_updated_at
|
|
384
|
+
purchase.updated_at_to_short_date
|
|
385
|
+
purchase.updated_at_to_long_date
|
|
386
|
+
purchase.updated_at_to_short_datetime
|
|
387
|
+
purchase.updated_at_to_long_datetime
|
|
388
388
|
```
|
|
389
389
|
|
|
390
390
|
> You can pass to `humanize_attributes` the option `only: [:attr1, :attr2]` to humanize specific attributes. The `except` option works in similar way.
|
|
391
391
|
|
|
392
|
+
### Integration with Draper Gem
|
|
393
|
+
|
|
394
|
+
If you are thinking that the formatting functionality is a **view related issue**, you are right. Because of this, we made the integration with [Draper gem](https://github.com/drapergem/draper). Using draper, you can move all your humanizers to your model's decorator.
|
|
395
|
+
|
|
396
|
+
With...
|
|
397
|
+
|
|
398
|
+
```ruby
|
|
399
|
+
class Purchase < ActiveRecord::Base
|
|
400
|
+
extend Enumerize
|
|
401
|
+
|
|
402
|
+
STATES = %i{pending canceled finished}
|
|
403
|
+
|
|
404
|
+
enumerize :state, in: STATES, default: :pending
|
|
405
|
+
|
|
406
|
+
humanize :state, enumerize: true
|
|
407
|
+
humanize :commission, percentage: true
|
|
408
|
+
humanize :amount, currency: true
|
|
409
|
+
end
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
You can refactor your code like this:
|
|
413
|
+
|
|
414
|
+
```ruby
|
|
415
|
+
class Purchase < ActiveRecord::Base
|
|
416
|
+
extend Enumerize
|
|
417
|
+
|
|
418
|
+
STATES = %i{pending canceled finished}
|
|
419
|
+
|
|
420
|
+
enumerize :state, in: STATES, default: :pending
|
|
421
|
+
end
|
|
422
|
+
|
|
423
|
+
class PurchaseDecorator < Draper::Decorator
|
|
424
|
+
delegate_all
|
|
425
|
+
|
|
426
|
+
humanize :state, enumerize: true
|
|
427
|
+
humanize :commission, percentage: true
|
|
428
|
+
humanize :amount, currency: true
|
|
429
|
+
end
|
|
430
|
+
```
|
|
431
|
+
|
|
432
|
+
Then, you can use it, like this:
|
|
433
|
+
|
|
434
|
+
```ruby
|
|
435
|
+
purchase.human_amount #=> NoMethodError: undefined method `human_amount'
|
|
436
|
+
purchase.decorate.human_amount #=> $2,000,000.95
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
It's not mandatory to use draper as decorator. You can extend whatever you want including `HumanAttributes::Extension`. For example:
|
|
440
|
+
|
|
441
|
+
```ruby
|
|
442
|
+
Draper::Decorator.send(:include, HumanAttributes::Extension)
|
|
443
|
+
```
|
|
444
|
+
|
|
392
445
|
### Rake Task
|
|
393
446
|
|
|
394
447
|
You can run, from your terminal, the following task to show defined human attributes for a particular ActiveRecord model.
|
|
@@ -420,12 +473,21 @@ human_paid => Yes
|
|
|
420
473
|
human_commission => 1000.990%
|
|
421
474
|
human_quantity => 1
|
|
422
475
|
human_expired_at => Fri, 06 Apr 1984 09:00:00 +0000
|
|
423
|
-
expired_at_to_short_date =>
|
|
476
|
+
expired_at_to_short_date => Apr 06
|
|
477
|
+
expired_at_to_long_date => Apr 06
|
|
478
|
+
expired_at_to_short_datetime => 06 Apr 09:00
|
|
479
|
+
expired_at_to_long_datetime => 06 Apr 09:00
|
|
424
480
|
human_amount => $2,000,000.95
|
|
425
|
-
human_created_at => Sat, 10 Dec 2016
|
|
426
|
-
created_at_to_short_date =>
|
|
427
|
-
|
|
428
|
-
|
|
481
|
+
human_created_at => Sat, 10 Dec 2016 21:18:15 +0000
|
|
482
|
+
created_at_to_short_date => Dec 10
|
|
483
|
+
created_at_to_long_date => Dec 10
|
|
484
|
+
created_at_to_short_datetime => 10 Dec 21:18
|
|
485
|
+
created_at_to_long_datetime => 10 Dec 21:18
|
|
486
|
+
human_updated_at => Sat, 10 Dec 2016 21:18:15 +0000
|
|
487
|
+
updated_at_to_short_date => Dec 10
|
|
488
|
+
updated_at_to_long_date => Dec 10
|
|
489
|
+
updated_at_to_short_datetime => 10 Dec 21:18
|
|
490
|
+
updated_at_to_long_datetime => 10 Dec 21:18
|
|
429
491
|
human_state => Pending
|
|
430
492
|
```
|
|
431
493
|
|
data/human_attributes.gemspec
CHANGED
|
@@ -20,8 +20,9 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.test_files = Dir["spec/**/*"]
|
|
21
21
|
|
|
22
22
|
s.add_dependency "rails", "~> 4.2", ">= 4.2.0"
|
|
23
|
-
s.add_dependency "enumerize", "~> 1", ">= 1.1.1"
|
|
24
23
|
s.add_dependency "factory_girl_rails", "~> 4.6"
|
|
24
|
+
s.add_development_dependency "enumerize", "~> 1", ">= 1.1.1"
|
|
25
|
+
s.add_development_dependency "draper", "~> 2.1.0"
|
|
25
26
|
s.add_development_dependency "pry"
|
|
26
27
|
s.add_development_dependency "pry-rails"
|
|
27
28
|
s.add_development_dependency "sqlite3"
|
data/lib/human_attributes.rb
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
module HumanAttributes
|
|
2
2
|
module Error
|
|
3
|
-
class NotImplemented <
|
|
3
|
+
class NotImplemented < RuntimeError
|
|
4
4
|
def initialize
|
|
5
5
|
super("formatter not implemented")
|
|
6
6
|
end
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
class InvalidHumanizeConfig <
|
|
9
|
+
class InvalidHumanizeConfig < RuntimeError
|
|
10
10
|
def initialize
|
|
11
11
|
super("humanize options needs to be a Hash")
|
|
12
12
|
end
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
class NotEnumerizeAttribute <
|
|
15
|
+
class NotEnumerizeAttribute < RuntimeError
|
|
16
16
|
def initialize
|
|
17
17
|
super("needs to be an Enumerize::Value object")
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
class MissingFormatterOption <
|
|
21
|
+
class MissingFormatterOption < RuntimeError
|
|
22
22
|
def initialize
|
|
23
23
|
super("custom type needs formatter option with a proc")
|
|
24
24
|
end
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
class InvalidType <
|
|
27
|
+
class InvalidType < RuntimeError
|
|
28
28
|
def initialize
|
|
29
29
|
types = HumanAttributes::Config::TYPES.map { |t| t[:name] }
|
|
30
30
|
super("type needs to be one of: #{types.join(', ')}")
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
class RequiredAttributeType <
|
|
34
|
+
class RequiredAttributeType < RuntimeError
|
|
35
35
|
def initialize
|
|
36
36
|
super("type is required")
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
-
class InvalidAttributeOptions <
|
|
40
|
+
class InvalidAttributeOptions < RuntimeError
|
|
41
41
|
def initialize
|
|
42
42
|
super("options needs to be a Hash")
|
|
43
43
|
end
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module HumanAttributes
|
|
2
|
-
module
|
|
2
|
+
module Extension
|
|
3
3
|
extend ActiveSupport::Concern
|
|
4
4
|
|
|
5
5
|
class_methods do
|
|
@@ -60,4 +60,10 @@ module HumanAttributes
|
|
|
60
60
|
end
|
|
61
61
|
end
|
|
62
62
|
|
|
63
|
-
ActiveRecord::Base.send(:include, HumanAttributes::
|
|
63
|
+
ActiveRecord::Base.send(:include, HumanAttributes::Extension)
|
|
64
|
+
|
|
65
|
+
begin
|
|
66
|
+
Draper::Decorator.send(:include, HumanAttributes::Extension)
|
|
67
|
+
rescue NameError
|
|
68
|
+
nil
|
|
69
|
+
end
|
|
Binary file
|
|
@@ -14,3 +14,31 @@ Migrating to CreatePurchases (20161113032308)
|
|
|
14
14
|
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
15
15
|
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
16
16
|
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
17
|
+
[1m[36mPurchase Load (0.4ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
18
|
+
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
19
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
20
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO "purchases" ("state", "created_at", "updated_at") VALUES (?, ?, ?) [["state", "pending"], ["created_at", "2016-12-18 15:54:31.837322"], ["updated_at", "2016-12-18 15:54:31.837322"]]
|
|
21
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
22
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
23
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("state", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["state", "pending"], ["created_at", "2016-12-18 15:54:34.004324"], ["updated_at", "2016-12-18 15:54:34.004324"]]
|
|
24
|
+
[1m[35m (1.3ms)[0m commit transaction
|
|
25
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
26
|
+
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
27
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
28
|
+
[1m[35mPurchase Load (0.1ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
29
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
30
|
+
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
31
|
+
[1m[36mPurchase Load (0.1ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
32
|
+
[1m[35mSQL (0.9ms)[0m UPDATE "purchases" SET "commission" = 22 WHERE "purchases"."id" = ? [["id", 2]]
|
|
33
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
34
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
35
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
36
|
+
[1m[36mPurchase Load (0.1ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
37
|
+
[1m[36mPurchase Load (1.0ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
38
|
+
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
39
|
+
[1m[36mPurchase Load (0.4ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
40
|
+
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
41
|
+
[1m[36mPurchase Load (0.2ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
42
|
+
[1m[36mPurchase Load (0.5ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
|
43
|
+
[1m[35mPurchase Load (0.2ms)[0m SELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1
|
|
44
|
+
[1m[36mPurchase Load (1.0ms)[0m [1mSELECT "purchases".* FROM "purchases" ORDER BY "purchases"."id" DESC LIMIT 1[0m
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -29637,3 +29637,1690 @@ Migrating to CreatePurchases (20161113032308)
|
|
|
29637
29637
|
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 21:19:13.053688"], ["updated_at", "2016-12-10 21:19:13.053688"]]
|
|
29638
29638
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29639
29639
|
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29640
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
29641
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
29642
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
29643
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
29644
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
29645
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
29646
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
29647
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
29648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29649
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29650
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29651
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29653
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29654
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29655
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29656
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29657
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29658
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29659
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29660
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29662
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29663
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29668
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29669
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29671
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29673
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
29674
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29675
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29676
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29677
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29678
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29679
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29681
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29683
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29685
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29686
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29687
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29688
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
29689
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29691
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29692
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29693
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29694
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29695
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29697
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29698
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29699
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29701
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29702
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29703
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29704
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29705
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29706
|
+
[1m[36m (2.5ms)[0m [1mbegin transaction[0m
|
|
29707
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29708
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29709
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29710
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29711
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29713
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29714
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29715
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29716
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
29717
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29718
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.718343"], ["updated_at", "2016-12-10 22:34:46.718343"]]
|
|
29719
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29720
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29721
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
29722
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29723
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.728346"], ["updated_at", "2016-12-10 22:34:46.728346"]]
|
|
29724
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29725
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
29726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29727
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29728
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.735358"], ["updated_at", "2016-12-10 22:34:46.735358"]]
|
|
29729
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29730
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29731
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29732
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29733
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.752328"], ["updated_at", "2016-12-10 22:34:46.752328"]]
|
|
29734
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29735
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29736
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29737
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
29738
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.761948"], ["updated_at", "2016-12-10 22:34:46.761948"]]
|
|
29739
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29740
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29741
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29742
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29743
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.770796"], ["updated_at", "2016-12-10 22:34:46.770796"]]
|
|
29744
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29745
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
29746
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29747
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29748
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.777916"], ["updated_at", "2016-12-10 22:34:46.777916"]]
|
|
29749
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29750
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29751
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29752
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29753
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.783123"], ["updated_at", "2016-12-10 22:34:46.783123"]]
|
|
29754
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29755
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
29756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29757
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29758
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.792995"], ["updated_at", "2016-12-10 22:34:46.792995"]]
|
|
29759
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29760
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29761
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29762
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29763
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.797349"], ["updated_at", "2016-12-10 22:34:46.797349"]]
|
|
29764
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29765
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29768
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.801996"], ["updated_at", "2016-12-10 22:34:46.801996"]]
|
|
29769
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29770
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29771
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29772
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29773
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.807399"], ["updated_at", "2016-12-10 22:34:46.807399"]]
|
|
29774
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29775
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
29776
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
29777
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29778
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.816865"], ["updated_at", "2016-12-10 22:34:46.816865"]]
|
|
29779
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29780
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29781
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29782
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29783
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.821060"], ["updated_at", "2016-12-10 22:34:46.821060"]]
|
|
29784
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29785
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29786
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29787
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29788
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.824420"], ["updated_at", "2016-12-10 22:34:46.824420"]]
|
|
29789
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29790
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29791
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29792
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29793
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.828336"], ["updated_at", "2016-12-10 22:34:46.828336"]]
|
|
29794
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29795
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29797
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29798
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.831923"], ["updated_at", "2016-12-10 22:34:46.831923"]]
|
|
29799
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29800
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29801
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29802
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29803
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.836130"], ["updated_at", "2016-12-10 22:34:46.836130"]]
|
|
29804
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29805
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29806
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29807
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29808
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.842754"], ["updated_at", "2016-12-10 22:34:46.842754"]]
|
|
29809
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29810
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29811
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
29812
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29813
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.846351"], ["updated_at", "2016-12-10 22:34:46.846351"]]
|
|
29814
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29815
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29817
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29818
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.849547"], ["updated_at", "2016-12-10 22:34:46.849547"]]
|
|
29819
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29820
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29821
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29822
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29823
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.853096"], ["updated_at", "2016-12-10 22:34:46.853096"]]
|
|
29824
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29825
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
29826
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
29827
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29828
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.862740"], ["updated_at", "2016-12-10 22:34:46.862740"]]
|
|
29829
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29830
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29831
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29832
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29833
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.870202"], ["updated_at", "2016-12-10 22:34:46.870202"]]
|
|
29834
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29835
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29836
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29837
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29838
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.874128"], ["updated_at", "2016-12-10 22:34:46.874128"]]
|
|
29839
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29840
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
29841
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
29842
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29843
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.878864"], ["updated_at", "2016-12-10 22:34:46.878864"]]
|
|
29844
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29845
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29846
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29847
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29848
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.883651"], ["updated_at", "2016-12-10 22:34:46.883651"]]
|
|
29849
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29850
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
29851
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29852
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29853
|
+
[1m[35mSQL (3.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.888919"], ["updated_at", "2016-12-10 22:34:46.888919"]]
|
|
29854
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29855
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29856
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29857
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29858
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.896591"], ["updated_at", "2016-12-10 22:34:46.896591"]]
|
|
29859
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29860
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29861
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29862
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29863
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.900768"], ["updated_at", "2016-12-10 22:34:46.900768"]]
|
|
29864
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29865
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
29866
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29867
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29868
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.905246"], ["updated_at", "2016-12-10 22:34:46.905246"]]
|
|
29869
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29870
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
|
29871
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
29872
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29873
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.917080"], ["updated_at", "2016-12-10 22:34:46.917080"]]
|
|
29874
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29875
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29877
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29878
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-10 22:34:46.921576"], ["updated_at", "2016-12-10 22:34:46.921576"]]
|
|
29879
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29880
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29881
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
29882
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
29883
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
29884
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
|
29885
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
29886
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
29887
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
29888
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
29889
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29890
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29891
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29892
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29894
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29895
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29896
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29897
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29898
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29899
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29900
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29901
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29902
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29903
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29904
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29905
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29906
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29907
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29908
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29909
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29910
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29911
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29912
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29913
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
29914
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29915
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29916
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29917
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
29918
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
29919
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29920
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29921
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29922
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29923
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29924
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29925
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29926
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29927
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29928
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29930
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29931
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29932
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29933
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29934
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29936
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29937
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29938
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
29939
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29940
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29941
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29942
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29944
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29945
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29946
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29947
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29948
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29949
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29950
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29951
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29952
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29953
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29954
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29955
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29956
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
29957
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29958
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
29959
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.235048"], ["updated_at", "2016-12-18 15:47:46.235048"]]
|
|
29960
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29961
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29962
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29964
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.246268"], ["updated_at", "2016-12-18 15:47:46.246268"]]
|
|
29965
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29966
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29967
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29968
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
29969
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.256402"], ["updated_at", "2016-12-18 15:47:46.256402"]]
|
|
29970
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29971
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
29972
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29973
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29974
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.265091"], ["updated_at", "2016-12-18 15:47:46.265091"]]
|
|
29975
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29976
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
29977
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
29978
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29979
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.269225"], ["updated_at", "2016-12-18 15:47:46.269225"]]
|
|
29980
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29981
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
29982
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
29983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29984
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.273697"], ["updated_at", "2016-12-18 15:47:46.273697"]]
|
|
29985
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29986
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
29987
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29989
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.278680"], ["updated_at", "2016-12-18 15:47:46.278680"]]
|
|
29990
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
29991
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
29992
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
29993
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
29994
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.284888"], ["updated_at", "2016-12-18 15:47:46.284888"]]
|
|
29995
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
29996
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
29997
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
29998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
29999
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.293909"], ["updated_at", "2016-12-18 15:47:46.293909"]]
|
|
30000
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30001
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30002
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30003
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30004
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.298766"], ["updated_at", "2016-12-18 15:47:46.298766"]]
|
|
30005
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30006
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
30007
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
30008
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30009
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.311591"], ["updated_at", "2016-12-18 15:47:46.311591"]]
|
|
30010
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30011
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30012
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30013
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30014
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.315234"], ["updated_at", "2016-12-18 15:47:46.315234"]]
|
|
30015
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30016
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30017
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30018
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30019
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.318957"], ["updated_at", "2016-12-18 15:47:46.318957"]]
|
|
30020
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30021
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30022
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30024
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.322441"], ["updated_at", "2016-12-18 15:47:46.322441"]]
|
|
30025
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30026
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30027
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30028
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30029
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.325963"], ["updated_at", "2016-12-18 15:47:46.325963"]]
|
|
30030
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30031
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30032
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30033
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30034
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.329300"], ["updated_at", "2016-12-18 15:47:46.329300"]]
|
|
30035
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30036
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30037
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30038
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30039
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.332996"], ["updated_at", "2016-12-18 15:47:46.332996"]]
|
|
30040
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30041
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
30042
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30043
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30044
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.340724"], ["updated_at", "2016-12-18 15:47:46.340724"]]
|
|
30045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30046
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30047
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30048
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30049
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.344247"], ["updated_at", "2016-12-18 15:47:46.344247"]]
|
|
30050
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30051
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30052
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30053
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30054
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.348159"], ["updated_at", "2016-12-18 15:47:46.348159"]]
|
|
30055
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30056
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
30057
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30058
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30059
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.357721"], ["updated_at", "2016-12-18 15:47:46.357721"]]
|
|
30060
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30061
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30062
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30063
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30064
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.363821"], ["updated_at", "2016-12-18 15:47:46.363821"]]
|
|
30065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30066
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30067
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30068
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30069
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.368322"], ["updated_at", "2016-12-18 15:47:46.368322"]]
|
|
30070
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30071
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30072
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30073
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30074
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.372926"], ["updated_at", "2016-12-18 15:47:46.372926"]]
|
|
30075
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30076
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30077
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30078
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30079
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.377119"], ["updated_at", "2016-12-18 15:47:46.377119"]]
|
|
30080
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30081
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30082
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30084
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.381749"], ["updated_at", "2016-12-18 15:47:46.381749"]]
|
|
30085
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30086
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30087
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30088
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30089
|
+
[1m[36mSQL (2.7ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.388189"], ["updated_at", "2016-12-18 15:47:46.388189"]]
|
|
30090
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30091
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30092
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30093
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30094
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.395963"], ["updated_at", "2016-12-18 15:47:46.395963"]]
|
|
30095
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30096
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30097
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30098
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
30099
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.403761"], ["updated_at", "2016-12-18 15:47:46.403761"]]
|
|
30100
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30101
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
30102
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30103
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30104
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.413546"], ["updated_at", "2016-12-18 15:47:46.413546"]]
|
|
30105
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30106
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30108
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30109
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.417338"], ["updated_at", "2016-12-18 15:47:46.417338"]]
|
|
30110
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30111
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30112
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30113
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30114
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.421483"], ["updated_at", "2016-12-18 15:47:46.421483"]]
|
|
30115
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30116
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30117
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30118
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30119
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:47:46.426006"], ["updated_at", "2016-12-18 15:47:46.426006"]]
|
|
30120
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30121
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30122
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
30123
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
30124
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
30125
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
|
30126
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
30127
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
30128
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
30129
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
30130
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30131
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30132
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30133
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30135
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30137
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30138
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30139
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30140
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30141
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30143
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30144
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30145
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30146
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30147
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30148
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30149
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30150
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30151
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30153
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30154
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30155
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30156
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30157
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30159
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30161
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30163
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30164
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30165
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30167
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30168
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30169
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30170
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
30171
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30173
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30175
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30177
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30178
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30179
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30181
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30182
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30183
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30186
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30187
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30189
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30190
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30191
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30192
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30193
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30195
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30197
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30199
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30200
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.541789"], ["updated_at", "2016-12-18 15:55:08.541789"]]
|
|
30201
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30202
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30203
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30204
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30205
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.556280"], ["updated_at", "2016-12-18 15:55:08.556280"]]
|
|
30206
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30207
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30209
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30210
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.561073"], ["updated_at", "2016-12-18 15:55:08.561073"]]
|
|
30211
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30212
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30213
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30214
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30215
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.565955"], ["updated_at", "2016-12-18 15:55:08.565955"]]
|
|
30216
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30217
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
30218
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30219
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30220
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.572090"], ["updated_at", "2016-12-18 15:55:08.572090"]]
|
|
30221
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30222
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
30223
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30224
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30225
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.578511"], ["updated_at", "2016-12-18 15:55:08.578511"]]
|
|
30226
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30227
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30230
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.585771"], ["updated_at", "2016-12-18 15:55:08.585771"]]
|
|
30231
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30232
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30233
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30234
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30235
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.590279"], ["updated_at", "2016-12-18 15:55:08.590279"]]
|
|
30236
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30237
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
30238
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
30239
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30240
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.603580"], ["updated_at", "2016-12-18 15:55:08.603580"]]
|
|
30241
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30242
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30243
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30244
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30245
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.608245"], ["updated_at", "2016-12-18 15:55:08.608245"]]
|
|
30246
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30247
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30248
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30249
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30250
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.612943"], ["updated_at", "2016-12-18 15:55:08.612943"]]
|
|
30251
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30252
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30253
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30254
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30255
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.617171"], ["updated_at", "2016-12-18 15:55:08.617171"]]
|
|
30256
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30257
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30258
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30259
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30260
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.620757"], ["updated_at", "2016-12-18 15:55:08.620757"]]
|
|
30261
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30262
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30263
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30264
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30265
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.624219"], ["updated_at", "2016-12-18 15:55:08.624219"]]
|
|
30266
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30267
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30268
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30269
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30270
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.629187"], ["updated_at", "2016-12-18 15:55:08.629187"]]
|
|
30271
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30272
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
30273
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30275
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.635330"], ["updated_at", "2016-12-18 15:55:08.635330"]]
|
|
30276
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30277
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30279
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30280
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.638691"], ["updated_at", "2016-12-18 15:55:08.638691"]]
|
|
30281
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30282
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30283
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30284
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30285
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.643449"], ["updated_at", "2016-12-18 15:55:08.643449"]]
|
|
30286
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30287
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
30288
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
|
30289
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
30290
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.654040"], ["updated_at", "2016-12-18 15:55:08.654040"]]
|
|
30291
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30292
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
30293
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30295
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.658209"], ["updated_at", "2016-12-18 15:55:08.658209"]]
|
|
30296
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30297
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30298
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30299
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30300
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.661684"], ["updated_at", "2016-12-18 15:55:08.661684"]]
|
|
30301
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30302
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30303
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30304
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30305
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.665594"], ["updated_at", "2016-12-18 15:55:08.665594"]]
|
|
30306
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30307
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30309
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30310
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.670431"], ["updated_at", "2016-12-18 15:55:08.670431"]]
|
|
30311
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30312
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30313
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30314
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30315
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.675267"], ["updated_at", "2016-12-18 15:55:08.675267"]]
|
|
30316
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30317
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30318
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30319
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30320
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.683410"], ["updated_at", "2016-12-18 15:55:08.683410"]]
|
|
30321
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30322
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30323
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30324
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30325
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.687808"], ["updated_at", "2016-12-18 15:55:08.687808"]]
|
|
30326
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30327
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30328
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30329
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
30330
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.693828"], ["updated_at", "2016-12-18 15:55:08.693828"]]
|
|
30331
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30332
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
30333
|
+
[1m[35m (0.3ms)[0m begin transaction
|
|
30334
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30335
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.704616"], ["updated_at", "2016-12-18 15:55:08.704616"]]
|
|
30336
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30337
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30338
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30339
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30340
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.710120"], ["updated_at", "2016-12-18 15:55:08.710120"]]
|
|
30341
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30342
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30343
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30344
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30345
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.714605"], ["updated_at", "2016-12-18 15:55:08.714605"]]
|
|
30346
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30347
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30348
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30350
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.719043"], ["updated_at", "2016-12-18 15:55:08.719043"]]
|
|
30351
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30352
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30353
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30354
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30355
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.724095"], ["updated_at", "2016-12-18 15:55:08.724095"]]
|
|
30356
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30357
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
30358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30359
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30360
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 15:55:08.732473"], ["updated_at", "2016-12-18 15:55:08.732473"]]
|
|
30361
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30362
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30363
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
30364
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
30365
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
30366
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
|
30367
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
30368
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
30369
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
30370
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
30371
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30372
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30373
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30374
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30375
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30376
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30378
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30380
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30381
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30382
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30383
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30384
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30386
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30387
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30388
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30389
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30390
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30392
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30393
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30394
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30395
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30396
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30397
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30398
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30399
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30400
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30401
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30402
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30403
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30404
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30405
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30406
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30407
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30408
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30409
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30410
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30411
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30412
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30413
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30414
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30415
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30416
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30417
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30418
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30420
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30421
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30422
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30424
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30426
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30428
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30429
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30430
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30431
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30432
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30434
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30436
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30438
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30439
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30440
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30441
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.559231"], ["updated_at", "2016-12-18 16:01:44.559231"]]
|
|
30442
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30443
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30444
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30445
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30446
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.566124"], ["updated_at", "2016-12-18 16:01:44.566124"]]
|
|
30447
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30448
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30449
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30450
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30451
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.570800"], ["updated_at", "2016-12-18 16:01:44.570800"]]
|
|
30452
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30453
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30454
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30455
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30456
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.575901"], ["updated_at", "2016-12-18 16:01:44.575901"]]
|
|
30457
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30458
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30459
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30460
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30461
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.580638"], ["updated_at", "2016-12-18 16:01:44.580638"]]
|
|
30462
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30463
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30464
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30465
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30466
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.586068"], ["updated_at", "2016-12-18 16:01:44.586068"]]
|
|
30467
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30468
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30469
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30470
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30471
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.590489"], ["updated_at", "2016-12-18 16:01:44.590489"]]
|
|
30472
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30473
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30474
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30475
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30476
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.594837"], ["updated_at", "2016-12-18 16:01:44.594837"]]
|
|
30477
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30478
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30479
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30481
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.599911"], ["updated_at", "2016-12-18 16:01:44.599911"]]
|
|
30482
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30483
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30484
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30485
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30486
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.604237"], ["updated_at", "2016-12-18 16:01:44.604237"]]
|
|
30487
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30488
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30490
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30491
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.608283"], ["updated_at", "2016-12-18 16:01:44.608283"]]
|
|
30492
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30493
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30494
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30496
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.611534"], ["updated_at", "2016-12-18 16:01:44.611534"]]
|
|
30497
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30498
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30499
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30500
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30501
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.614623"], ["updated_at", "2016-12-18 16:01:44.614623"]]
|
|
30502
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30503
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30504
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30505
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30506
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.617769"], ["updated_at", "2016-12-18 16:01:44.617769"]]
|
|
30507
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30508
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30509
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30510
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30511
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.621245"], ["updated_at", "2016-12-18 16:01:44.621245"]]
|
|
30512
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30513
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30514
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30516
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.624513"], ["updated_at", "2016-12-18 16:01:44.624513"]]
|
|
30517
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30518
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30519
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30520
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30521
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.628212"], ["updated_at", "2016-12-18 16:01:44.628212"]]
|
|
30522
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30523
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30524
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30525
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30526
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.631556"], ["updated_at", "2016-12-18 16:01:44.631556"]]
|
|
30527
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30528
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30529
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30530
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30531
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.634699"], ["updated_at", "2016-12-18 16:01:44.634699"]]
|
|
30532
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30533
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30534
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30535
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30536
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.637949"], ["updated_at", "2016-12-18 16:01:44.637949"]]
|
|
30537
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30538
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30539
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30540
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30541
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.641335"], ["updated_at", "2016-12-18 16:01:44.641335"]]
|
|
30542
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30543
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30544
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30545
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30546
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.644688"], ["updated_at", "2016-12-18 16:01:44.644688"]]
|
|
30547
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30548
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30549
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30550
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30551
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.649236"], ["updated_at", "2016-12-18 16:01:44.649236"]]
|
|
30552
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30553
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30554
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30555
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30556
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.653697"], ["updated_at", "2016-12-18 16:01:44.653697"]]
|
|
30557
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30558
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30559
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30560
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30561
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.658590"], ["updated_at", "2016-12-18 16:01:44.658590"]]
|
|
30562
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30563
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30564
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30565
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30566
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.663125"], ["updated_at", "2016-12-18 16:01:44.663125"]]
|
|
30567
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30568
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30569
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30570
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30571
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.667741"], ["updated_at", "2016-12-18 16:01:44.667741"]]
|
|
30572
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30573
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30574
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30575
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30576
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.672149"], ["updated_at", "2016-12-18 16:01:44.672149"]]
|
|
30577
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30578
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30579
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30580
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30581
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.676780"], ["updated_at", "2016-12-18 16:01:44.676780"]]
|
|
30582
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30583
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30584
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30585
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30586
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.683150"], ["updated_at", "2016-12-18 16:01:44.683150"]]
|
|
30587
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30588
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30589
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30590
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30591
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.688558"], ["updated_at", "2016-12-18 16:01:44.688558"]]
|
|
30592
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30593
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30594
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30595
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30596
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.693289"], ["updated_at", "2016-12-18 16:01:44.693289"]]
|
|
30597
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30598
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30599
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30601
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:01:44.697598"], ["updated_at", "2016-12-18 16:01:44.697598"]]
|
|
30602
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30603
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30604
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
30605
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
30606
|
+
[1m[35m (2.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
30607
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
|
30608
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
30609
|
+
[1m[36m (0.4ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
30610
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
30611
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
30612
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30613
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30615
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30616
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
|
30617
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30618
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30619
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30620
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30621
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30622
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
30623
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30624
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30625
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30627
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30629
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30630
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30631
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30633
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30635
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30636
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30637
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30638
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
30639
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30640
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30643
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30644
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30645
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30646
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30647
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30648
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30649
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30650
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30651
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30653
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30654
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30655
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30656
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30657
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30658
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30659
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30660
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30661
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30663
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30664
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30665
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30666
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30669
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30671
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30673
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30674
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30675
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30676
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30677
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30678
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
30679
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30680
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
30681
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30682
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.811301"], ["updated_at", "2016-12-18 16:26:43.811301"]]
|
|
30683
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30684
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30685
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30686
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30687
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.818526"], ["updated_at", "2016-12-18 16:26:43.818526"]]
|
|
30688
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30689
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30691
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30692
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.822658"], ["updated_at", "2016-12-18 16:26:43.822658"]]
|
|
30693
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30694
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30695
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30696
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30697
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.826852"], ["updated_at", "2016-12-18 16:26:43.826852"]]
|
|
30698
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30699
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30700
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30701
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30702
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.831067"], ["updated_at", "2016-12-18 16:26:43.831067"]]
|
|
30703
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30704
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30705
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30706
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30707
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.835796"], ["updated_at", "2016-12-18 16:26:43.835796"]]
|
|
30708
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30709
|
+
[1m[35m (2.5ms)[0m rollback transaction
|
|
30710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30711
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30712
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.842699"], ["updated_at", "2016-12-18 16:26:43.842699"]]
|
|
30713
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30714
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30715
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30716
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30717
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.846807"], ["updated_at", "2016-12-18 16:26:43.846807"]]
|
|
30718
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30719
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
30720
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
30721
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30722
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.859234"], ["updated_at", "2016-12-18 16:26:43.859234"]]
|
|
30723
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30724
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30725
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30726
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30727
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.864024"], ["updated_at", "2016-12-18 16:26:43.864024"]]
|
|
30728
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30729
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30730
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30732
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.868735"], ["updated_at", "2016-12-18 16:26:43.868735"]]
|
|
30733
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30734
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30735
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
30736
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30737
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.872958"], ["updated_at", "2016-12-18 16:26:43.872958"]]
|
|
30738
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30739
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30741
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30742
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.876662"], ["updated_at", "2016-12-18 16:26:43.876662"]]
|
|
30743
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30744
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30745
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30746
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30747
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.880191"], ["updated_at", "2016-12-18 16:26:43.880191"]]
|
|
30748
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30749
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30751
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30752
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.884006"], ["updated_at", "2016-12-18 16:26:43.884006"]]
|
|
30753
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30754
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30755
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30756
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30757
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.890695"], ["updated_at", "2016-12-18 16:26:43.890695"]]
|
|
30758
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30759
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30761
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30762
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.894696"], ["updated_at", "2016-12-18 16:26:43.894696"]]
|
|
30763
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30764
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30765
|
+
[1m[35m (0.3ms)[0m begin transaction
|
|
30766
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30767
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.900872"], ["updated_at", "2016-12-18 16:26:43.900872"]]
|
|
30768
|
+
[1m[36m (0.3ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30769
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30770
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30771
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30772
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.910637"], ["updated_at", "2016-12-18 16:26:43.910637"]]
|
|
30773
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30774
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30775
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30776
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30777
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.914587"], ["updated_at", "2016-12-18 16:26:43.914587"]]
|
|
30778
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30779
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30780
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30781
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30782
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.918272"], ["updated_at", "2016-12-18 16:26:43.918272"]]
|
|
30783
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30784
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30785
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30786
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30787
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.921490"], ["updated_at", "2016-12-18 16:26:43.921490"]]
|
|
30788
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30789
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30790
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30791
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30792
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.925635"], ["updated_at", "2016-12-18 16:26:43.925635"]]
|
|
30793
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30794
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30795
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30796
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30797
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.929932"], ["updated_at", "2016-12-18 16:26:43.929932"]]
|
|
30798
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30799
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30800
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30801
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30802
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.934404"], ["updated_at", "2016-12-18 16:26:43.934404"]]
|
|
30803
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30804
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30805
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30806
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30807
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.942061"], ["updated_at", "2016-12-18 16:26:43.942061"]]
|
|
30808
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30809
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30810
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30812
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.946095"], ["updated_at", "2016-12-18 16:26:43.946095"]]
|
|
30813
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30814
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
30815
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
30816
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30817
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.958195"], ["updated_at", "2016-12-18 16:26:43.958195"]]
|
|
30818
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30819
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30820
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30821
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30822
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.963296"], ["updated_at", "2016-12-18 16:26:43.963296"]]
|
|
30823
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30824
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30825
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30826
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30827
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.968220"], ["updated_at", "2016-12-18 16:26:43.968220"]]
|
|
30828
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30829
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30830
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30831
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30832
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.972686"], ["updated_at", "2016-12-18 16:26:43.972686"]]
|
|
30833
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30834
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30835
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30836
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30837
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.976981"], ["updated_at", "2016-12-18 16:26:43.976981"]]
|
|
30838
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30839
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30840
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30841
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30842
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:26:43.981382"], ["updated_at", "2016-12-18 16:26:43.981382"]]
|
|
30843
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30844
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30845
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
30846
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
30847
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
30848
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
30849
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
30850
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
30851
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
30852
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
30853
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30854
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30856
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30857
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30858
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30860
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30862
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30864
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30865
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30866
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30867
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30868
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30869
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30870
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30871
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30872
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30873
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30874
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30876
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30877
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30878
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30879
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30880
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30882
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30883
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
30884
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30885
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30886
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30887
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30888
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30889
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30890
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30891
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30892
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30894
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30895
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30896
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30898
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30899
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30900
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30901
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30902
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30903
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30904
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
30905
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30906
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30907
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30908
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30909
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30910
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30911
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30912
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30913
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30914
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30915
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30916
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30917
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30918
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30919
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30920
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
30921
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30922
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30923
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.671740"], ["updated_at", "2016-12-18 16:27:10.671740"]]
|
|
30924
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30925
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30927
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30928
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.681932"], ["updated_at", "2016-12-18 16:27:10.681932"]]
|
|
30929
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30930
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
30931
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30932
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30933
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.686364"], ["updated_at", "2016-12-18 16:27:10.686364"]]
|
|
30934
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30935
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30936
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30937
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30938
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.692736"], ["updated_at", "2016-12-18 16:27:10.692736"]]
|
|
30939
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30940
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
30941
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
30942
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30943
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.703450"], ["updated_at", "2016-12-18 16:27:10.703450"]]
|
|
30944
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30945
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30946
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30948
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.707668"], ["updated_at", "2016-12-18 16:27:10.707668"]]
|
|
30949
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30950
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30951
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30952
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30953
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.711586"], ["updated_at", "2016-12-18 16:27:10.711586"]]
|
|
30954
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30955
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30956
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30957
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30958
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.715706"], ["updated_at", "2016-12-18 16:27:10.715706"]]
|
|
30959
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30960
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30961
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30962
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30963
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.721937"], ["updated_at", "2016-12-18 16:27:10.721937"]]
|
|
30964
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30965
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30966
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30967
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30968
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.729025"], ["updated_at", "2016-12-18 16:27:10.729025"]]
|
|
30969
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30970
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30971
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30973
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.733135"], ["updated_at", "2016-12-18 16:27:10.733135"]]
|
|
30974
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30975
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
30976
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
30977
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30978
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.736305"], ["updated_at", "2016-12-18 16:27:10.736305"]]
|
|
30979
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30980
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
30981
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
30982
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
30983
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.739390"], ["updated_at", "2016-12-18 16:27:10.739390"]]
|
|
30984
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30985
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
30986
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
30987
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30988
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.749439"], ["updated_at", "2016-12-18 16:27:10.749439"]]
|
|
30989
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
30990
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
30991
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
30992
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
30993
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.754624"], ["updated_at", "2016-12-18 16:27:10.754624"]]
|
|
30994
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
30995
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
30996
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
30997
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
30998
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.757758"], ["updated_at", "2016-12-18 16:27:10.757758"]]
|
|
30999
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31000
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31002
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31003
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.761051"], ["updated_at", "2016-12-18 16:27:10.761051"]]
|
|
31004
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31005
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31006
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31007
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31008
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.764304"], ["updated_at", "2016-12-18 16:27:10.764304"]]
|
|
31009
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31010
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31011
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31012
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31013
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.767302"], ["updated_at", "2016-12-18 16:27:10.767302"]]
|
|
31014
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31015
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
31016
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31017
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31018
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.772053"], ["updated_at", "2016-12-18 16:27:10.772053"]]
|
|
31019
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31020
|
+
[1m[35m (2.8ms)[0m rollback transaction
|
|
31021
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31022
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31023
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.778328"], ["updated_at", "2016-12-18 16:27:10.778328"]]
|
|
31024
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31025
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31026
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31027
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31028
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.781680"], ["updated_at", "2016-12-18 16:27:10.781680"]]
|
|
31029
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31030
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
31031
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31032
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31033
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.785958"], ["updated_at", "2016-12-18 16:27:10.785958"]]
|
|
31034
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31035
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31036
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31037
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31038
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.791720"], ["updated_at", "2016-12-18 16:27:10.791720"]]
|
|
31039
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31040
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
31041
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
31042
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31043
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.802496"], ["updated_at", "2016-12-18 16:27:10.802496"]]
|
|
31044
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31045
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31046
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31047
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31048
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.808026"], ["updated_at", "2016-12-18 16:27:10.808026"]]
|
|
31049
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31050
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31051
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31052
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31053
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.812409"], ["updated_at", "2016-12-18 16:27:10.812409"]]
|
|
31054
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31055
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
31056
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31057
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31058
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.816331"], ["updated_at", "2016-12-18 16:27:10.816331"]]
|
|
31059
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31060
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31061
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31062
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31063
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.821422"], ["updated_at", "2016-12-18 16:27:10.821422"]]
|
|
31064
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31065
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31066
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31067
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31068
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.828636"], ["updated_at", "2016-12-18 16:27:10.828636"]]
|
|
31069
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31070
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31071
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31072
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31073
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.832839"], ["updated_at", "2016-12-18 16:27:10.832839"]]
|
|
31074
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31075
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31076
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31077
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31078
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.836858"], ["updated_at", "2016-12-18 16:27:10.836858"]]
|
|
31079
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31080
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
31081
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31082
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31083
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:10.843030"], ["updated_at", "2016-12-18 16:27:10.843030"]]
|
|
31084
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31085
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
31086
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
31087
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "purchases" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "paid" boolean, "commission" decimal, "quantity" integer, "state" varchar, "expired_at" datetime, "amount" decimal, "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
31088
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
31089
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
31090
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
31091
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
31092
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20161113032308')
|
|
31093
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
31094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31095
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31096
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31097
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31098
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31099
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31100
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31101
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31102
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31103
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
31104
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
31105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31106
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31109
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31111
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31112
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
31113
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31114
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31115
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31116
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31117
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31119
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31120
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31121
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31123
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31125
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31129
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31130
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31131
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31132
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31133
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31134
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31135
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31137
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31139
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31141
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31143
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31144
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31145
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31146
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
31147
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
31148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31149
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31151
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31153
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31154
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31155
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
31158
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31159
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31160
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
31161
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
31162
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31163
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31164
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.179524"], ["updated_at", "2016-12-18 16:27:33.179524"]]
|
|
31165
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31166
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31167
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31169
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.188359"], ["updated_at", "2016-12-18 16:27:33.188359"]]
|
|
31170
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31171
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
31172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31173
|
+
[1m[35m (0.9ms)[0m SAVEPOINT active_record_1
|
|
31174
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.196580"], ["updated_at", "2016-12-18 16:27:33.196580"]]
|
|
31175
|
+
[1m[35m (0.3ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31176
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
31177
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
31178
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31179
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.208085"], ["updated_at", "2016-12-18 16:27:33.208085"]]
|
|
31180
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31181
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31183
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31184
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.213530"], ["updated_at", "2016-12-18 16:27:33.213530"]]
|
|
31185
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31186
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
31187
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31188
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31189
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.218473"], ["updated_at", "2016-12-18 16:27:33.218473"]]
|
|
31190
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31191
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
31192
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31193
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31194
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.224472"], ["updated_at", "2016-12-18 16:27:33.224472"]]
|
|
31195
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31196
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
31197
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31198
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31199
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.232356"], ["updated_at", "2016-12-18 16:27:33.232356"]]
|
|
31200
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31201
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
31202
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31203
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31204
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.238784"], ["updated_at", "2016-12-18 16:27:33.238784"]]
|
|
31205
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31206
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31207
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31208
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31209
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.243460"], ["updated_at", "2016-12-18 16:27:33.243460"]]
|
|
31210
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31211
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
31212
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
31213
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31214
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.256723"], ["updated_at", "2016-12-18 16:27:33.256723"]]
|
|
31215
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31216
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
31217
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31218
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31219
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.261003"], ["updated_at", "2016-12-18 16:27:33.261003"]]
|
|
31220
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31221
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
31222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31223
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31224
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.264782"], ["updated_at", "2016-12-18 16:27:33.264782"]]
|
|
31225
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31226
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31227
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31228
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31229
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.268154"], ["updated_at", "2016-12-18 16:27:33.268154"]]
|
|
31230
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31231
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31232
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31233
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31234
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.272925"], ["updated_at", "2016-12-18 16:27:33.272925"]]
|
|
31235
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31236
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
|
31237
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31238
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31239
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.280307"], ["updated_at", "2016-12-18 16:27:33.280307"]]
|
|
31240
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31241
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
31242
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31243
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31244
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.284053"], ["updated_at", "2016-12-18 16:27:33.284053"]]
|
|
31245
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31246
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31247
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31248
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31249
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.287879"], ["updated_at", "2016-12-18 16:27:33.287879"]]
|
|
31250
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31251
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31252
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31253
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31254
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.291655"], ["updated_at", "2016-12-18 16:27:33.291655"]]
|
|
31255
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31256
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31257
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31258
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31259
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.298878"], ["updated_at", "2016-12-18 16:27:33.298878"]]
|
|
31260
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31261
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
|
31262
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31263
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31264
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.307708"], ["updated_at", "2016-12-18 16:27:33.307708"]]
|
|
31265
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31266
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31267
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31268
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31269
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.311629"], ["updated_at", "2016-12-18 16:27:33.311629"]]
|
|
31270
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31271
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31272
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31273
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31274
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.316076"], ["updated_at", "2016-12-18 16:27:33.316076"]]
|
|
31275
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31276
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
31277
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31278
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31279
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.320771"], ["updated_at", "2016-12-18 16:27:33.320771"]]
|
|
31280
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31281
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
31282
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31283
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31284
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.330239"], ["updated_at", "2016-12-18 16:27:33.330239"]]
|
|
31285
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31286
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31287
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31288
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31289
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.334942"], ["updated_at", "2016-12-18 16:27:33.334942"]]
|
|
31290
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31291
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31293
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31294
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.339461"], ["updated_at", "2016-12-18 16:27:33.339461"]]
|
|
31295
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31296
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31297
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31298
|
+
[1m[36m (0.3ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31299
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.346079"], ["updated_at", "2016-12-18 16:27:33.346079"]]
|
|
31300
|
+
[1m[36m (0.2ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31301
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
31302
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
31303
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31304
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.357786"], ["updated_at", "2016-12-18 16:27:33.357786"]]
|
|
31305
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31306
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
|
31307
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
31308
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31309
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.362614"], ["updated_at", "2016-12-18 16:27:33.362614"]]
|
|
31310
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31311
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
31312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31313
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
31314
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.367001"], ["updated_at", "2016-12-18 16:27:33.367001"]]
|
|
31315
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31316
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
31317
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
31318
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
31319
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.370939"], ["updated_at", "2016-12-18 16:27:33.370939"]]
|
|
31320
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
31321
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
31322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31323
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
31324
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "purchases" ("paid", "commission", "quantity", "expired_at", "amount", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["paid", "t"], ["commission", 1000.99], ["quantity", 1], ["expired_at", "1984-04-06 09:00:00.000000"], ["amount", 2000000.95], ["description", "Just a text"], ["created_at", "2016-12-18 16:27:33.379610"], ["updated_at", "2016-12-18 16:27:33.379610"]]
|
|
31325
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
31326
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|