attr_initializable 0.0.1
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.
- data/LICENSE +20 -0
- data/README.md +12 -0
- data/Rakefile +38 -0
- data/lib/attr_initializable.rb +27 -0
- data/lib/attr_initializable/version.rb +3 -0
- data/lib/tasks/attr_initializable_tasks.rake +4 -0
- data/test/attr_initializable_test.rb +43 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/manufacturer.rb +3 -0
- data/test/dummy/app/models/widget.rb +7 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +10 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20131027192625_create_manufacturers.rb +9 -0
- data/test/dummy/db/migrate/20131027192834_create_widgets.rb +11 -0
- data/test/dummy/db/schema.rb +28 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +28 -0
- data/test/dummy/log/test.log +690 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/test_helper.rb +15 -0
- metadata +162 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20131027192834) do
|
15
|
+
|
16
|
+
create_table "manufacturers", :force => true do |t|
|
17
|
+
t.datetime "created_at", :null => false
|
18
|
+
t.datetime "updated_at", :null => false
|
19
|
+
end
|
20
|
+
|
21
|
+
create_table "widgets", :force => true do |t|
|
22
|
+
t.integer "manufacturer_id"
|
23
|
+
t.string "name"
|
24
|
+
t.datetime "created_at", :null => false
|
25
|
+
t.datetime "updated_at", :null => false
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
Binary file
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
5
|
+
[1m[35m (223.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6
|
+
[1m[36m (177.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7
|
+
[1m[35m (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
8
|
+
Migrating to CreateManufacturers (20131027192625)
|
9
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
11
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131027192625')[0m
|
12
|
+
[1m[35m (214.4ms)[0m commit transaction
|
13
|
+
Migrating to CreateWidgets (20131027192834)
|
14
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
15
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
16
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20131027192834')[0m
|
17
|
+
[1m[35m (218.2ms)[0m commit transaction
|
18
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
19
|
+
Connecting to database specified by database.yml
|
20
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
21
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
22
|
+
[1m[36m (299.5ms)[0m [1mCREATE TABLE "manufacturers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
23
|
+
[1m[35m (199.0ms)[0m CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "manufacturer_id" integer, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
24
|
+
[1m[36m (266.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
25
|
+
[1m[35m (289.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
26
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
27
|
+
[1m[35m (221.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131027192834')
|
28
|
+
[1m[36m (211.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131027192625')[0m
|
@@ -0,0 +1,690 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
9
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10
|
+
Connecting to database specified by database.yml
|
11
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
14
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
15
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
17
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
20
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
21
|
+
Connecting to database specified by database.yml
|
22
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
23
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
27
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
28
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
29
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
30
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
31
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
32
|
+
Connecting to database specified by database.yml
|
33
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
34
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
35
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
36
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
37
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
38
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
39
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
40
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
41
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
42
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
43
|
+
Connecting to database specified by database.yml
|
44
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
45
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
47
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
48
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
49
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
50
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
51
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
52
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
53
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
54
|
+
Connecting to database specified by database.yml
|
55
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
57
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
58
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
59
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
60
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
62
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
63
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
64
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
65
|
+
Connecting to database specified by database.yml
|
66
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
67
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
68
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
69
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
70
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
71
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
72
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
73
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
74
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
75
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
76
|
+
Connecting to database specified by database.yml
|
77
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
78
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
79
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
80
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
81
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
82
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
83
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
84
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
85
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
86
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
87
|
+
Connecting to database specified by database.yml
|
88
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
89
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
90
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
91
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
92
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
95
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
96
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
97
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
98
|
+
Connecting to database specified by database.yml
|
99
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
100
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
102
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
103
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
104
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
105
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
106
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
108
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
109
|
+
Connecting to database specified by database.yml
|
110
|
+
Connecting to database specified by database.yml
|
111
|
+
Connecting to database specified by database.yml
|
112
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
113
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
114
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
115
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
116
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
117
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
118
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
119
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
120
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
121
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
122
|
+
Connecting to database specified by database.yml
|
123
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
124
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
125
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
126
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
127
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
128
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
129
|
+
[1m[36mSQL (28.7ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
|
130
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
|
131
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
132
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
133
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
134
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
136
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
139
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
|
140
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:43:21 UTC +00:00]]
|
141
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
143
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
145
|
+
Connecting to database specified by database.yml
|
146
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
147
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
149
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
150
|
+
[1m[36mSQL (4.8ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
|
151
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
152
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
153
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
154
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
155
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
156
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
|
157
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
|
158
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
160
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
161
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
163
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
164
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
165
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
166
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
|
167
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:44:09 UTC +00:00]]
|
168
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
169
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
170
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
171
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
172
|
+
Connecting to database specified by database.yml
|
173
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
174
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
175
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
176
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
177
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
178
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
179
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
180
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
182
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
183
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
184
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
185
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
186
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
187
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
188
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
189
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
190
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
192
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
193
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
194
|
+
[1m[35m (0.0ms)[0m begin transaction
|
195
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
196
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
197
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
198
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
200
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
201
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
202
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
203
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
204
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
205
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
207
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:51:53 UTC +00:00]]
|
208
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
209
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
210
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
211
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
212
|
+
Connecting to database specified by database.yml
|
213
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
214
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
215
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
216
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
217
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
218
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
219
|
+
[1m[36mManufacturer Load (0.3ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
220
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
221
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
223
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
224
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
225
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
226
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
227
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
228
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
229
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
230
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
231
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
232
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
233
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
234
|
+
[1m[35m (0.0ms)[0m begin transaction
|
235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
236
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
237
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
238
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
241
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
242
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
243
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
244
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
245
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
246
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
247
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00], ["updated_at", Sun, 27 Oct 2013 19:55:06 UTC +00:00]]
|
248
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
249
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
250
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
251
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
252
|
+
Connecting to database specified by database.yml
|
253
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
254
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
255
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
256
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
257
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
258
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
259
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
260
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
261
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
262
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
263
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
264
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
265
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
266
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
267
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
268
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
269
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
270
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
271
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
272
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
273
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
274
|
+
[1m[35m (0.0ms)[0m begin transaction
|
275
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
276
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
277
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
278
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
279
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
281
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
282
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
283
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
284
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
285
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
286
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
287
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:13:21 UTC +00:00]]
|
288
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
289
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
290
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
291
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
292
|
+
Connecting to database specified by database.yml
|
293
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
294
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
295
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
296
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
297
|
+
[1m[36mSQL (5.0ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
298
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
299
|
+
[1m[36mManufacturer Load (0.3ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
300
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
303
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
304
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
305
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
306
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
307
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
308
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
309
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
310
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
311
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
312
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
313
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
314
|
+
[1m[35m (0.0ms)[0m begin transaction
|
315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
316
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
317
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
318
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
319
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
320
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
321
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
322
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
324
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
325
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
327
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:44:38 UTC +00:00]]
|
328
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
329
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
330
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
331
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
332
|
+
Connecting to database specified by database.yml
|
333
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
334
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
336
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
337
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
338
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
339
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
340
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
341
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
342
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
343
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
344
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
345
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
347
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
350
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
351
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
352
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
353
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
354
|
+
[1m[35m (0.0ms)[0m begin transaction
|
355
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
356
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
357
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
358
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
360
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
361
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
362
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
363
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
364
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
365
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
366
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
367
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:54:12 UTC +00:00]]
|
368
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
369
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
370
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
371
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
372
|
+
Connecting to database specified by database.yml
|
373
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
374
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
375
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
376
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
377
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
378
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
379
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
380
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
381
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
382
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
383
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
384
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
385
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
386
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
387
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
389
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
390
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
391
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
392
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
393
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
394
|
+
[1m[35m (0.0ms)[0m begin transaction
|
395
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
396
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
397
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
398
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
399
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
400
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
401
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
402
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
403
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
404
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
405
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
406
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
407
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 02:55:58 UTC +00:00]]
|
408
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
409
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
410
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
411
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
412
|
+
Connecting to database specified by database.yml
|
413
|
+
Connecting to database specified by database.yml
|
414
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
415
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
417
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
418
|
+
[1m[36mSQL (27.3ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
419
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
420
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
421
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
423
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
424
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
425
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
426
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
427
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
428
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
430
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
431
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
432
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
433
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
434
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
435
|
+
[1m[35m (0.0ms)[0m begin transaction
|
436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
437
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
438
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
439
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
440
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
442
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
443
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
444
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
445
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
446
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
447
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
448
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:01:39 UTC +00:00]]
|
449
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
450
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
451
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
452
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
453
|
+
Connecting to database specified by database.yml
|
454
|
+
Connecting to database specified by database.yml
|
455
|
+
Connecting to database specified by database.yml
|
456
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
457
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
458
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
459
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
460
|
+
[1m[36mSQL (27.3ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
461
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
462
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
463
|
+
[1m[35m (0.0ms)[0m begin transaction
|
464
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
465
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
466
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
467
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
468
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
469
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
470
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
471
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
472
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
473
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
474
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
475
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
476
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
478
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
479
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
480
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
482
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
483
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
484
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
485
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
486
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
487
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
488
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
489
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:03:10 UTC +00:00]]
|
490
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
491
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
492
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
493
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
494
|
+
Connecting to database specified by database.yml
|
495
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
496
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
498
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
499
|
+
[1m[36mSQL (27.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
500
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
501
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
502
|
+
[1m[35m (0.0ms)[0m begin transaction
|
503
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
504
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
505
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
506
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
507
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
508
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
509
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
510
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
511
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
512
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
513
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
514
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
516
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
517
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
518
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
519
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
520
|
+
[1m[35m (0.0ms)[0m begin transaction
|
521
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
522
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
523
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
524
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
525
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
526
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
527
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
528
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:05 UTC +00:00]]
|
529
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
530
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
531
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
532
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
533
|
+
Connecting to database specified by database.yml
|
534
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
535
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
536
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
537
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
538
|
+
[1m[36mSQL (27.7ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
539
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
540
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
541
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
542
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
543
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
544
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
545
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
546
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
547
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
548
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
550
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
551
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
552
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
553
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
554
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
555
|
+
[1m[35m (0.0ms)[0m begin transaction
|
556
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
557
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
558
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
559
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
560
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
562
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
563
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
565
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
566
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
567
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
568
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:04:42 UTC +00:00]]
|
569
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
570
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
571
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
572
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
573
|
+
Connecting to database specified by database.yml
|
574
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
575
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
577
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
578
|
+
[1m[36mSQL (27.7ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:05:26 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:26 UTC +00:00]]
|
579
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
580
|
+
[1m[36mManufacturer Load (0.3ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
581
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
583
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
584
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
585
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
587
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
588
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
589
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
590
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
591
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
592
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
593
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
594
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
595
|
+
[1m[35m (0.0ms)[0m begin transaction
|
596
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
597
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
598
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
599
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
600
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
601
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
602
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
603
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
605
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
606
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
607
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
608
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:05:27 UTC +00:00]]
|
609
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
610
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
611
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
612
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
613
|
+
Connecting to database specified by database.yml
|
614
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
615
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
616
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
617
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
618
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
619
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
620
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
621
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
622
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
623
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
624
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
625
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
626
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
627
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
628
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
629
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
630
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
631
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
632
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
633
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
634
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
635
|
+
[1m[35m (0.0ms)[0m begin transaction
|
636
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
637
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
638
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
639
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
640
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
641
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
642
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
643
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
644
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
645
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
646
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
647
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
648
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:09:17 UTC +00:00]]
|
649
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
650
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
651
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
652
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
653
|
+
Connecting to database specified by database.yml
|
654
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
655
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
656
|
+
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
657
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
658
|
+
[1m[36mManufacturer Load (0.2ms)[0m [1mSELECT "manufacturers".* FROM "manufacturers" WHERE "manufacturers"."id" = 1 LIMIT 1[0m
|
659
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
660
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
661
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
662
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
663
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
664
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
665
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
666
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
667
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
668
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
669
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
670
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
671
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
672
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
673
|
+
[1m[35m (0.0ms)[0m begin transaction
|
674
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
675
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
676
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
677
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
678
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
679
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
680
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
681
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
682
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
683
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "widgets" ("created_at", "manufacturer_id", "name", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["manufacturer_id", 1], ["name", "name"], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
684
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
686
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "manufacturers" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00], ["updated_at", Mon, 28 Oct 2013 03:10:53 UTC +00:00]]
|
687
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
688
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
689
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
690
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|