has_moderated 0.0.25 → 0.0.26
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/lib/has_moderated/moderation_model.rb +24 -9
- data/lib/has_moderated/version.rb +1 -1
- data/test/dummy/app/models/habtm_name_test.rb +3 -0
- data/test/dummy/app/models/hmany_fk_test.rb +3 -0
- data/test/dummy/app/models/task.rb +3 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20111018174319_create_hmany_fk_tests.rb +10 -0
- data/test/dummy/db/migrate/20111018180207_create_habtm_name_tests.rb +13 -0
- data/test/dummy/db/schema.rb +19 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +263 -0
- data/test/dummy/log/test.log +3194 -0
- data/test/dummy/spec/factories/habtm_name_tests.rb +7 -0
- data/test/dummy/spec/factories/hmany_fk_tests.rb +8 -0
- data/test/dummy/spec/models/habtm_name_test_spec.rb +22 -0
- data/test/dummy/spec/models/hmany_fk_test_spec.rb +36 -0
- metadata +19 -3
@@ -29,21 +29,36 @@ module HasModerated
|
|
29
29
|
|
30
30
|
assoc = rec.class.reflections[assoc_name.to_sym]
|
31
31
|
|
32
|
-
if assoc.macro == :has_and_belongs_to_many || !assoc.options[:through].blank?
|
33
|
-
|
32
|
+
if assoc.macro == :has_and_belongs_to_many || !assoc.options[:through].blank?
|
33
|
+
field = if !assoc.options[:join_table].blank?
|
34
|
+
jointable = assoc.options[:join_table].to_s
|
35
|
+
results = arec.class.reflections.reject do |assoc_name, assoc|
|
36
|
+
!(assoc.options[:join_table] && assoc.options[:join_table].to_s == jointable)
|
37
|
+
end
|
38
|
+
if results.blank?
|
39
|
+
raise "has_moderated: Cannot determine join table for a Habtm association!"
|
40
|
+
end
|
41
|
+
results.first[1].name.to_s
|
42
|
+
else
|
43
|
+
rec.class.to_s.underscore.pluralize
|
44
|
+
end
|
45
|
+
arec.send(field) << rec
|
34
46
|
elsif assoc.macro == :has_many || assoc.macro == :has_one
|
35
|
-
field = if assoc.options[:as]
|
47
|
+
field = if !assoc.options[:as].blank?
|
36
48
|
assoc.options[:as].to_s
|
49
|
+
elsif !assoc.options[:foreign_key].blank?
|
50
|
+
fk = assoc.options[:foreign_key].to_s
|
51
|
+
results = arec.class.reflections.reject do |assoc_name, assoc|
|
52
|
+
!(assoc.options[:foreign_key] && assoc.options[:foreign_key].to_s == fk)
|
53
|
+
end
|
54
|
+
if results.blank?
|
55
|
+
raise "Please set foreign_key for both belongs_to and has_one/has_many!"
|
56
|
+
end
|
57
|
+
results.first[1].name.to_s
|
37
58
|
else
|
38
59
|
rec.class.to_s.underscore
|
39
60
|
end
|
40
61
|
arec.send(field + "=", rec)
|
41
|
-
#fk = if assoc.respond_to?(:foreign_key)
|
42
|
-
# assoc.foreign_key
|
43
|
-
#else # Rails < v3.1
|
44
|
-
# assoc.primary_key_name
|
45
|
-
#end
|
46
|
-
#arec.send(fk.to_s+"=", rec.id)
|
47
62
|
end
|
48
63
|
end
|
49
64
|
|
@@ -3,12 +3,14 @@ class Task < ActiveRecord::Base
|
|
3
3
|
has_many :subtasks
|
4
4
|
has_many :task_photos
|
5
5
|
has_and_belongs_to_many :hjoin_tests
|
6
|
+
has_and_belongs_to_many :habtms, :class_name => "HabtmNameTest"
|
6
7
|
has_one :hone_test
|
7
8
|
has_one :hone_as_test, :as => :testable
|
8
9
|
has_many :hmanythrough_join
|
9
10
|
has_many :hmanythrough_test, :through => :hmanythrough_join
|
11
|
+
has_many :lalas, :class_name => "HmanyFkTest", :foreign_key => "something_id"
|
10
12
|
has_moderated :title, :desc
|
11
|
-
has_moderated_create :with_associations => [:subtasks, :task_photos, :hjoin_tests, :hone_test, :hmanythrough_test, :hmanythrough_join, :hone_as_test]
|
13
|
+
has_moderated_create :with_associations => [:subtasks, :task_photos, :hjoin_tests, :hone_test, :hmanythrough_test, :hmanythrough_join, :hone_as_test, :lalas]
|
12
14
|
has_moderated_association :all
|
13
15
|
has_moderated_destroy
|
14
16
|
end
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class CreateHabtmNameTests < ActiveRecord::Migration
|
2
|
+
def change
|
3
|
+
create_table :habtm_name_tests do |t|
|
4
|
+
t.string :title
|
5
|
+
|
6
|
+
t.timestamps
|
7
|
+
end
|
8
|
+
create_table :habtm_name_tests_tasks, :id => false do |t|
|
9
|
+
t.integer :task_id
|
10
|
+
t.integer :habtm_name_test_id
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/test/dummy/db/schema.rb
CHANGED
@@ -10,7 +10,18 @@
|
|
10
10
|
#
|
11
11
|
# It's strongly recommended to check this file into your version control system.
|
12
12
|
|
13
|
-
ActiveRecord::Schema.define(:version =>
|
13
|
+
ActiveRecord::Schema.define(:version => 20111018180207) do
|
14
|
+
|
15
|
+
create_table "habtm_name_tests", :force => true do |t|
|
16
|
+
t.string "title"
|
17
|
+
t.datetime "created_at"
|
18
|
+
t.datetime "updated_at"
|
19
|
+
end
|
20
|
+
|
21
|
+
create_table "habtm_name_tests_tasks", :id => false, :force => true do |t|
|
22
|
+
t.integer "task_id"
|
23
|
+
t.integer "habtm_name_test_id"
|
24
|
+
end
|
14
25
|
|
15
26
|
create_table "hjoin_tests", :force => true do |t|
|
16
27
|
t.string "title"
|
@@ -23,6 +34,13 @@ ActiveRecord::Schema.define(:version => 20111018172409) do
|
|
23
34
|
t.integer "hjoin_test_id"
|
24
35
|
end
|
25
36
|
|
37
|
+
create_table "hmany_fk_tests", :force => true do |t|
|
38
|
+
t.integer "something_id"
|
39
|
+
t.string "title"
|
40
|
+
t.datetime "created_at"
|
41
|
+
t.datetime "updated_at"
|
42
|
+
end
|
43
|
+
|
26
44
|
create_table "hmanythrough_joins", :force => true do |t|
|
27
45
|
t.integer "hmanythrough_test_id"
|
28
46
|
t.integer "task_id"
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -6191,3 +6191,266 @@ Migrating to CreateHoneAsTests (20111018172409)
|
|
6191
6191
|
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009201729')
|
6192
6192
|
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009205517')[0m
|
6193
6193
|
[1m[35m (2.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009205545')
|
6194
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6195
|
+
Migrating to CreateTasks (20110901013205)
|
6196
|
+
Migrating to CreateSubtasks (20110901013228)
|
6197
|
+
Migrating to CreateModerations (20110901013618)
|
6198
|
+
Migrating to CreateTaskAlls (20110908025410)
|
6199
|
+
Migrating to AddTaskAllIdToSubtasks (20110908025606)
|
6200
|
+
Migrating to CreatePhotos (20111003205633)
|
6201
|
+
Migrating to CreateTaskPhotos (20111003234101)
|
6202
|
+
Migrating to CreateHookTests (20111004153147)
|
6203
|
+
Migrating to CreatePhotoHolders (20111004164509)
|
6204
|
+
Migrating to CreateHoneTests (20111008195728)
|
6205
|
+
Migrating to CreateHjoinTests (20111008195809)
|
6206
|
+
Migrating to FixJoinTable (20111009193145)
|
6207
|
+
Migrating to AddTitleToHoneTests (20111009201729)
|
6208
|
+
Migrating to CreateHmanythroughTests (20111009205517)
|
6209
|
+
Migrating to CreateHmanythroughJoins (20111009205545)
|
6210
|
+
Migrating to CreateHoneAsTests (20111018172409)
|
6211
|
+
Migrating to CreateHmanyFkTests (20111018174319)
|
6212
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
6213
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6214
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20111018174319')
|
6215
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
6216
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
6217
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hjoin_tests")[0m
|
6218
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hjoin_tests_tasks")
|
6219
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmany_fk_tests")[0m
|
6220
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmanythrough_joins")
|
6221
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmanythrough_tests")[0m
|
6222
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hone_as_tests")
|
6223
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hone_tests")[0m
|
6224
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hook_tests")
|
6225
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("moderations")[0m
|
6226
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("photo_holders")
|
6227
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photos")[0m
|
6228
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("subtasks")
|
6229
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("task_alls")[0m
|
6230
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("task_photos")
|
6231
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m
|
6232
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6233
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
6234
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "hjoin_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6235
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "hjoin_tests_tasks" ("task_id" integer, "hjoin_test_id" integer)
|
6236
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6237
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "hmanythrough_joins" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hmanythrough_test_id" integer, "task_id" integer, "exdata" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6238
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "hmanythrough_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6239
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "hone_as_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "testable_id" integer, "testable_type" varchar(255), "title" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6240
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "hone_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255)) [0m
|
6241
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "hook_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "foo" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6242
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
6243
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "photo_holders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6244
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime, "photo_holder_id" integer) [0m
|
6245
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
|
6246
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6247
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime)
|
6248
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6249
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6250
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
6251
|
+
[1m[35m (1.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6252
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6253
|
+
[1m[35m (1.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111018174319')
|
6254
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110901013205')[0m
|
6255
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
|
6256
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110901013618')[0m
|
6257
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
|
6258
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110908025606')[0m
|
6259
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
|
6260
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111003234101')[0m
|
6261
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111004153147')
|
6262
|
+
[1m[36m (2.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111004164509')[0m
|
6263
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111008195728')
|
6264
|
+
[1m[36m (1.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111008195809')[0m
|
6265
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009193145')
|
6266
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009201729')[0m
|
6267
|
+
[1m[35m (1.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
|
6268
|
+
[1m[36m (2.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009205545')[0m
|
6269
|
+
[1m[35m (1.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111018172409')
|
6270
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6271
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
6272
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "hjoin_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6273
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "hjoin_tests_tasks" ("task_id" integer, "hjoin_test_id" integer)
|
6274
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6275
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "hmanythrough_joins" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hmanythrough_test_id" integer, "task_id" integer, "exdata" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6276
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "hmanythrough_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6277
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "hone_as_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "testable_id" integer, "testable_type" varchar(255), "title" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6278
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "hone_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255)) [0m
|
6279
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "hook_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "foo" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6280
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
6281
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "photo_holders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6282
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime, "photo_holder_id" integer) [0m
|
6283
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
|
6284
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6285
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime)
|
6286
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6287
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6288
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
6289
|
+
[1m[35m (2.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6290
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6291
|
+
[1m[35m (1.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111018174319')
|
6292
|
+
[1m[36m (1.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110901013205')[0m
|
6293
|
+
[1m[35m (2.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
|
6294
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110901013618')[0m
|
6295
|
+
[1m[35m (2.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
|
6296
|
+
[1m[36m (1.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110908025606')[0m
|
6297
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
|
6298
|
+
[1m[36m (2.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111003234101')[0m
|
6299
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111004153147')
|
6300
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111004164509')[0m
|
6301
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111008195728')
|
6302
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111008195809')[0m
|
6303
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009193145')
|
6304
|
+
[1m[36m (2.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009201729')[0m
|
6305
|
+
[1m[35m (1.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
|
6306
|
+
[1m[36m (1.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009205545')[0m
|
6307
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111018172409')
|
6308
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6309
|
+
Migrating to CreateTasks (20110901013205)
|
6310
|
+
Migrating to CreateSubtasks (20110901013228)
|
6311
|
+
Migrating to CreateModerations (20110901013618)
|
6312
|
+
Migrating to CreateTaskAlls (20110908025410)
|
6313
|
+
Migrating to AddTaskAllIdToSubtasks (20110908025606)
|
6314
|
+
Migrating to CreatePhotos (20111003205633)
|
6315
|
+
Migrating to CreateTaskPhotos (20111003234101)
|
6316
|
+
Migrating to CreateHookTests (20111004153147)
|
6317
|
+
Migrating to CreatePhotoHolders (20111004164509)
|
6318
|
+
Migrating to CreateHoneTests (20111008195728)
|
6319
|
+
Migrating to CreateHjoinTests (20111008195809)
|
6320
|
+
Migrating to FixJoinTable (20111009193145)
|
6321
|
+
Migrating to AddTitleToHoneTests (20111009201729)
|
6322
|
+
Migrating to CreateHmanythroughTests (20111009205517)
|
6323
|
+
Migrating to CreateHmanythroughJoins (20111009205545)
|
6324
|
+
Migrating to CreateHoneAsTests (20111018172409)
|
6325
|
+
Migrating to CreateHmanyFkTests (20111018174319)
|
6326
|
+
Migrating to CreateHabtmNameTests (20111018180207)
|
6327
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
6328
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6329
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "habtm_name_tests_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "habtm_name_test_id" integer)
|
6330
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111018180207')[0m
|
6331
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
6332
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6333
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("habtm_name_tests")
|
6334
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("habtm_name_tests_tasks")[0m
|
6335
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hjoin_tests")
|
6336
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hjoin_tests_tasks")[0m
|
6337
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmany_fk_tests")
|
6338
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmanythrough_joins")[0m
|
6339
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmanythrough_tests")
|
6340
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hone_as_tests")[0m
|
6341
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hone_tests")
|
6342
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hook_tests")[0m
|
6343
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("moderations")
|
6344
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photo_holders")[0m
|
6345
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("photos")
|
6346
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("subtasks")[0m
|
6347
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("task_alls")
|
6348
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("task_photos")[0m
|
6349
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("tasks")
|
6350
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6351
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
6352
|
+
Migrating to CreateHabtmNameTests (20111018180207)
|
6353
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
6354
|
+
[1m[35m (0.8ms)[0m DROP TABLE "habtm_name_tests_tasks"
|
6355
|
+
[1m[36m (0.4ms)[0m [1mDROP TABLE "habtm_name_tests"[0m
|
6356
|
+
[1m[35m (0.2ms)[0m DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111018180207'
|
6357
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
6358
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
6359
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hjoin_tests")[0m
|
6360
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hjoin_tests_tasks")
|
6361
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmany_fk_tests")[0m
|
6362
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmanythrough_joins")
|
6363
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmanythrough_tests")[0m
|
6364
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hone_as_tests")
|
6365
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hone_tests")[0m
|
6366
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hook_tests")
|
6367
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("moderations")[0m
|
6368
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("photo_holders")
|
6369
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photos")[0m
|
6370
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("subtasks")
|
6371
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("task_alls")[0m
|
6372
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("task_photos")
|
6373
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m
|
6374
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6375
|
+
Migrating to CreateTasks (20110901013205)
|
6376
|
+
Migrating to CreateSubtasks (20110901013228)
|
6377
|
+
Migrating to CreateModerations (20110901013618)
|
6378
|
+
Migrating to CreateTaskAlls (20110908025410)
|
6379
|
+
Migrating to AddTaskAllIdToSubtasks (20110908025606)
|
6380
|
+
Migrating to CreatePhotos (20111003205633)
|
6381
|
+
Migrating to CreateTaskPhotos (20111003234101)
|
6382
|
+
Migrating to CreateHookTests (20111004153147)
|
6383
|
+
Migrating to CreatePhotoHolders (20111004164509)
|
6384
|
+
Migrating to CreateHoneTests (20111008195728)
|
6385
|
+
Migrating to CreateHjoinTests (20111008195809)
|
6386
|
+
Migrating to FixJoinTable (20111009193145)
|
6387
|
+
Migrating to AddTitleToHoneTests (20111009201729)
|
6388
|
+
Migrating to CreateHmanythroughTests (20111009205517)
|
6389
|
+
Migrating to CreateHmanythroughJoins (20111009205545)
|
6390
|
+
Migrating to CreateHoneAsTests (20111018172409)
|
6391
|
+
Migrating to CreateHmanyFkTests (20111018174319)
|
6392
|
+
Migrating to CreateHabtmNameTests (20111018180207)
|
6393
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
6394
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6395
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "habtm_name_tests_tasks" ("task_id" integer, "habtm_name_test_id" integer)
|
6396
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111018180207')[0m
|
6397
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
6398
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6399
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("habtm_name_tests")
|
6400
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("habtm_name_tests_tasks")[0m
|
6401
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hjoin_tests")
|
6402
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hjoin_tests_tasks")[0m
|
6403
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmany_fk_tests")
|
6404
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmanythrough_joins")[0m
|
6405
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmanythrough_tests")
|
6406
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hone_as_tests")[0m
|
6407
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hone_tests")
|
6408
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hook_tests")[0m
|
6409
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("moderations")
|
6410
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photo_holders")[0m
|
6411
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("photos")
|
6412
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("subtasks")[0m
|
6413
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("task_alls")
|
6414
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("task_photos")[0m
|
6415
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("tasks")
|
6416
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6417
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
6418
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6419
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "habtm_name_tests_tasks" ("task_id" integer, "habtm_name_test_id" integer)
|
6420
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "hjoin_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6421
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "hjoin_tests_tasks" ("task_id" integer, "hjoin_test_id" integer)
|
6422
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6423
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "hmanythrough_joins" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "hmanythrough_test_id" integer, "task_id" integer, "exdata" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6424
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "hmanythrough_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6425
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "hone_as_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "testable_id" integer, "testable_type" varchar(255), "title" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6426
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "hone_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255)) [0m
|
6427
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "hook_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "foo" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6428
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "moderations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moderatable_id" integer, "moderatable_type" varchar(255) NOT NULL, "attr_name" varchar(60) NOT NULL, "attr_value" text NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
6429
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "photo_holders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime)
|
6430
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime, "photo_holder_id" integer) [0m
|
6431
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "subtasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime, "task_all_id" integer)
|
6432
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6433
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime)
|
6434
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
6435
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6436
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
6437
|
+
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6438
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6439
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111018180207')
|
6440
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110901013205')[0m
|
6441
|
+
[1m[35m (1.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
|
6442
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110901013618')[0m
|
6443
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
|
6444
|
+
[1m[36m (1.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110908025606')[0m
|
6445
|
+
[1m[35m (2.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
|
6446
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111003234101')[0m
|
6447
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111004153147')
|
6448
|
+
[1m[36m (1.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111004164509')[0m
|
6449
|
+
[1m[35m (1.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111008195728')
|
6450
|
+
[1m[36m (2.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111008195809')[0m
|
6451
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009193145')
|
6452
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009201729')[0m
|
6453
|
+
[1m[35m (1.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
|
6454
|
+
[1m[36m (1.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111009205545')[0m
|
6455
|
+
[1m[35m (1.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20111018172409')
|
6456
|
+
[1m[36m (2.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20111018174319')[0m
|
data/test/dummy/log/test.log
CHANGED
@@ -108972,3 +108972,3197 @@ SQLite3::SQLException: no such column: hone_tests.hasone_id: SELECT "hone_tests
|
|
108972
108972
|
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
108973
108973
|
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
108974
108974
|
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
108975
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
108976
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hjoin_tests: \n - created_at: \n title: HJoin\n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
108977
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108978
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
108979
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
108980
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
108981
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
108982
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
108983
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
108984
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
108985
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108986
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
108987
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108988
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
108989
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
108990
|
+
[1m[35m (0.1ms)[0m INSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)
|
108991
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108992
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
108993
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
108994
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
108995
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
108996
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
108997
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
108998
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
108999
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109000
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1 LIMIT 1
|
109001
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109002
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109003
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109004
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109005
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109006
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109007
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109008
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109009
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109010
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109012
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109013
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109014
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109015
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109016
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hjoin_tests=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109017
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109018
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
109019
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109020
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109021
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109022
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109024
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109025
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)[0m
|
109026
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109027
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109028
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109029
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109030
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109031
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109032
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
109033
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109034
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
109035
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109036
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1 LIMIT 1
|
109037
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109038
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hmanythrough_test: \n - created_at: \n title: HJoin\n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109039
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109040
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109041
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109042
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109043
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109044
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109045
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109046
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109047
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109048
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109049
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109050
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109051
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109052
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["exdata", nil], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109053
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109054
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109055
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109056
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109057
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109058
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109059
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109060
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
109061
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109062
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109063
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109064
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109065
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109066
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109067
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109068
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109069
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109070
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109071
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109072
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109073
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109074
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109075
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109076
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109077
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109078
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hmanythrough_test=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109079
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109080
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109081
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109082
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109084
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109085
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109086
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109087
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["exdata", nil], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109088
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109089
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109090
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109091
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109092
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109093
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109094
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109095
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109096
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
109097
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109098
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109099
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109100
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109101
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109102
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109103
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109105
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109106
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109107
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109108
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109109
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109110
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109111
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109112
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109113
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109114
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hmanythrough_join=>[{"exdata"=>"Data", "created_at"=>nil, "task_id"=>nil, "updated_at"=>nil, :associations=>{:hmanythrough_test=>[{"created_at"=>nil, "title"=>"Hello", "updated_at"=>nil, "id"=>nil}]}, "id"=>nil, "hmanythrough_test_id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109115
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109116
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109117
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109118
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109119
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109120
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109121
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109122
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109123
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109124
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["title", "Hello"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109125
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109127
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["exdata", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109128
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109129
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109130
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109131
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109132
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109133
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109134
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109135
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109136
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
109137
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109138
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109139
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109140
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109141
|
+
[1m[36mHmanythroughJoin Load (0.1ms)[0m [1mSELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1[0m
|
109142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109143
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hmanythrough_join: \n - exdata: Data\n created_at: \n task_id: \n updated_at: \n :associations: \n :hmanythrough_test: \n - created_at: \n title: Hello\n updated_at: \n id: \n id: \n hmanythrough_test_id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109144
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109145
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmanythrough_tests" [0m
|
109146
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109147
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109149
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109150
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109151
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109152
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109153
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109154
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["title", "Hello"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109155
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109156
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109157
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["exdata", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109158
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109159
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109160
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109161
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109162
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109163
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109164
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109165
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109166
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
109167
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109168
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109169
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109170
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109171
|
+
[1m[36mHmanythroughJoin Load (0.1ms)[0m [1mSELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1[0m
|
109172
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109173
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109174
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109175
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hone_as_test: \n - created_at: \n title: Hone\n updated_at: \n testable_id: \n testable_type: Task\n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109176
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109177
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
109178
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109179
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109180
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109181
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109182
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109183
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109184
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109185
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109186
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hone_as_tests" ("created_at", "testable_id", "testable_type", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["testable_id", 1], ["testable_type", "Task"], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109187
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109188
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109189
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109190
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109191
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109192
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109193
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
109194
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109195
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109196
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109197
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109198
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109199
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109200
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109201
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109202
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109203
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109204
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109205
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109207
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109208
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109209
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109210
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109211
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:hone_as_test=>[{"created_at"=>nil, "title"=>"Hone", "updated_at"=>nil, "testable_id"=>1, "testable_type"=>"Task", "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109212
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109213
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109214
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109215
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109216
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109217
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
109218
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109219
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
109220
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109221
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hone_as_tests" ("created_at", "testable_id", "testable_type", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["testable_id", 1], ["testable_type", "Task"], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109222
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109223
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109224
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109225
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109226
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109227
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109228
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109229
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
109230
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109231
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109232
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109233
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109235
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hone_test: \n - created_at: \n task_id: \n title: Hone\n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109236
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109237
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
109238
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
109239
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109241
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109242
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109243
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109244
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109245
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109246
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["task_id", 1], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109247
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109248
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109249
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109250
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109251
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109252
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109253
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
109254
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109255
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109257
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109258
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109259
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109260
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109261
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109262
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109263
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109264
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109265
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109266
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109267
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109268
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109269
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109270
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109271
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:hone_test=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Hone", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
|
109272
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109273
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109274
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109275
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109276
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109277
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
109278
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109279
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
109280
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109281
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["task_id", 1], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109282
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109283
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109284
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109285
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109286
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109287
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109288
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109289
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
109290
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109291
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109292
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109293
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "TEST--- \n:associations: \n:main_model: \n created_at: \n title: TEST\n updated_at: \n id: \n foo: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109294
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109295
|
+
[1m[36mModeration Load (0.2ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109296
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109297
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n created_at: \n title: \"\"\n updated_at: \n id: \n foo: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109298
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109299
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109300
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109301
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hook_tests" ("created_at", "foo", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["foo", nil], ["title", ""], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109302
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109303
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109304
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109305
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109306
|
+
[1m[35mHookTest Load (0.1ms)[0m SELECT "hook_tests".* FROM "hook_tests" LIMIT 1
|
109307
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109308
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "TEST--- TEST\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109309
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109310
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109311
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109312
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: TEST\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109313
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109314
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109315
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109316
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "photo_holders" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["title", nil], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109317
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n photo: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1946-622-7764/test.jpg\n id: \n photo_holder_id: 1\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109318
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109319
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
109320
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109321
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109322
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["photo", "test.jpg"], ["photo_holder_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109323
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109324
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109325
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109326
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109327
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
109328
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
109329
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109330
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n photo: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1946-622-4059/test.jpg\n id: \n photo_holder_id: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109331
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109332
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
109333
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109334
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109335
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["photo", "test.jpg"], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109336
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109337
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109338
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109339
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109340
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
109341
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
109342
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109343
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n photo: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1946-622-5055/test.jpg\n id: \n photo_holder_id: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109344
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109345
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
109346
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109347
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109348
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109349
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109350
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
109351
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109352
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109353
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109354
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
109355
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109356
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109357
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["photo", nil], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109358
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109359
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109360
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109361
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109362
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
109363
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109364
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
109365
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "photos" SET "photo" = NULL, "updated_at" = '2011-10-18 17:46:29.218599' WHERE "photos"."id" = 1[0m
|
109366
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "photo_tmp_file"], ["attr_value", "/Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1946-622-9589/test.jpg"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109367
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109368
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
109369
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109370
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109371
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1[0m
|
109372
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109373
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", 1]]
|
109374
|
+
[1m[35m (0.1ms)[0m UPDATE "photos" SET "photo" = 'test.jpg', "updated_at" = '2011-10-18 17:46:29.233352' WHERE "photos"."id" = 1
|
109375
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109376
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109377
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109378
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109379
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
109380
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109381
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :task_photos: \n - photo: \n task_id: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1946-622-6066/test.jpg\n id: \n:main_model: \n created_at: \n title: Task 1\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109382
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109383
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109384
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109385
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_photos" [0m
|
109386
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109387
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109388
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109389
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109390
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109391
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109392
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109393
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "task_photos" ("created_at", "photo", "task_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["photo", "test.jpg"], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109394
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109395
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109396
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109397
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109398
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109399
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109400
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109401
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109402
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109403
|
+
[1m[36mTaskPhoto Load (0.1ms)[0m [1mSELECT "task_photos".* FROM "task_photos" WHERE "task_photos"."task_id" = 1 LIMIT 1[0m
|
109404
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109405
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109406
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109407
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109408
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
109409
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109410
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109411
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109412
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109413
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109414
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109415
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109416
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109417
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109418
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109419
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109420
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109421
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109422
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109423
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109424
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109425
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109426
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109427
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109428
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109429
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109430
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109431
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109432
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109433
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109434
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109435
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109436
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109437
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109438
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109439
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109440
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109441
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109442
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109443
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109444
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109445
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109446
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109447
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109448
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109449
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109450
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109451
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109452
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109453
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109454
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109455
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109456
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109457
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109458
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109459
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109460
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
109461
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109462
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109463
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
109464
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109465
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "updated_at" = '2011-10-18 17:46:29.426605', "title" = 'Hollywood Hills' WHERE "tasks"."id" = 1[0m
|
109466
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109467
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109468
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109469
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109470
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 5]]
|
109471
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109472
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109473
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109474
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109475
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109476
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109477
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109478
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109479
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109480
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109481
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109482
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
109483
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109484
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109485
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109486
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109488
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109489
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109490
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109491
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109492
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109493
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109494
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109495
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109496
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109497
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109498
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109499
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109500
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109501
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109502
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109503
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109504
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109505
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109506
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109507
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109508
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109509
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - created_at: \n task_id: \n title: Hollywood Hills\n updated_at: \n id: \n task_all_id: \n desc: \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109510
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109511
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109512
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
109513
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109514
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109515
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109516
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109517
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109518
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109519
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109520
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109521
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109522
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109523
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109524
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109525
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109526
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109527
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109528
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109529
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109530
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
109531
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109532
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109533
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109534
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
109535
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109537
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", "Hollywood Hills"], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109538
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109539
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109540
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109541
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109542
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109543
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109544
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
109545
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109546
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109547
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109548
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109549
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109550
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109551
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109552
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109553
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109554
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109555
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109556
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109557
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109558
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109559
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109560
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109561
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "desc"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109562
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109563
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109564
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109565
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109566
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109567
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109568
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109569
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109570
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "desc" = 'Hollywood Hills', "updated_at" = '2011-10-18 17:46:29.621109' WHERE "tasks"."id" = 1
|
109571
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109572
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109573
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109574
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109575
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109576
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109577
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109578
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109579
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109580
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109581
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
109582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109583
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109584
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109585
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - 1\n:main_model: \n created_at: \n title: Hollywood Hills\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109586
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109587
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109588
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
109589
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1[0m
|
109590
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109591
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109592
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109593
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109594
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109595
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109596
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
109597
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109598
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:46:29.648411' WHERE "subtasks"."id" = 1
|
109599
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109602
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109603
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109604
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109605
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
109606
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109607
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109608
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
109609
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
109610
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109611
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - created_at: \n task_id: \n title: Hollywood Hills\n updated_at: \n id: \n task_all_id: \n desc: \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n value: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "TaskAll"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109612
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109613
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_alls" [0m
|
109614
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
109615
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109616
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109617
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_alls" ("created_at", "title", "updated_at", "value") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["value", nil]]
|
109618
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109619
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109620
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", 1], ["task_id", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109621
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109623
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109624
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109625
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109626
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109627
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_alls" [0m
|
109628
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
109629
|
+
[1m[36mTaskAll Load (0.1ms)[0m [1mSELECT "task_alls".* FROM "task_alls" LIMIT 1[0m
|
109630
|
+
[1m[35mTaskAll Load (0.1ms)[0m SELECT "task_alls".* FROM "task_alls" LIMIT 1
|
109631
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_all_id" = 1 LIMIT 1[0m
|
109632
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109633
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109634
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109635
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
109636
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109637
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109638
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109639
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - 1\n:main_model: \n created_at: \n title: Hollywood Hills\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109640
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109641
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109642
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "subtasks"
|
109643
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
109644
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109645
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109646
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109647
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109648
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109649
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109650
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
109651
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109652
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109653
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109654
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109655
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109656
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
109657
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109658
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109659
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109660
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109661
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109662
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109663
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109664
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109665
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109666
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109667
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109668
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109669
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109670
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109671
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109672
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "destroy"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109673
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109674
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109675
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109676
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109677
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109678
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task'
|
109679
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109680
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
109681
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 1]]
|
109682
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109683
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109684
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109685
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109686
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
109687
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109688
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109689
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109690
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109691
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109692
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109693
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109694
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109695
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109696
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109697
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109698
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109699
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109700
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109701
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Hollywood Hills", "updated_at"=>nil, "id"=>nil, "task_all_id"=>nil, "desc"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109702
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109703
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109704
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109705
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109706
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109707
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109708
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
109709
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
109710
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109711
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
109712
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109713
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109714
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109715
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109716
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109717
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109718
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109719
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109720
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
109721
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
109722
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109723
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
109724
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109725
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109726
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109727
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109728
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109729
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109730
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109731
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109732
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109733
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109734
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109735
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109736
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109737
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109738
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109739
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109740
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109741
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[1]}}], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109742
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109743
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109744
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
109745
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109746
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109747
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109748
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109749
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109750
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109751
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
109752
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
109753
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109754
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:46:29.903901' WHERE "subtasks"."id" = 1
|
109755
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109756
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109757
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109758
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109759
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
109760
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109761
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109762
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
109763
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109764
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
109765
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109766
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109767
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109768
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109769
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109770
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109771
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109772
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109773
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109774
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109775
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109776
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109777
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
109778
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109779
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Jo jo", "updated_at"=>nil, "id"=>nil, "task_all_id"=>nil, "desc"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109780
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109781
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109782
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109783
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109784
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109785
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109786
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109787
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
109788
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109789
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
109790
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109791
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109792
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109793
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109794
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109795
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109796
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109797
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109798
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
109799
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
109800
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109801
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109802
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109803
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109804
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109805
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109806
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109807
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109808
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109809
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109810
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109811
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109812
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109813
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109814
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109815
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
109816
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109817
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
109818
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109819
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[1]}}], ["created_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
|
109820
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109821
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109822
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
109823
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109824
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109825
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
109826
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109827
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:46:29.971431' WHERE "subtasks"."id" = 1[0m
|
109828
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109829
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109830
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109831
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109832
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109833
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109834
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109835
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
109836
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
109837
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109838
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hjoin_tests: \n - created_at: \n title: HJoin\n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:13 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:13 UTC +00:00]]
|
109839
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109840
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
109841
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109842
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109843
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109844
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:13 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:13 UTC +00:00]]
|
109845
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109846
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109847
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109848
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109849
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109850
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109851
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:13 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:50:13 UTC +00:00]]
|
109852
|
+
[1m[35m (0.1ms)[0m INSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)
|
109853
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109854
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109855
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109856
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109857
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109858
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109859
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109860
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
109861
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109862
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1 LIMIT 1
|
109863
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109864
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109865
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109866
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109867
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109868
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109869
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109870
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109871
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109872
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109873
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109874
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109875
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109876
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109877
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109878
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hjoin_tests=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109879
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109880
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
109881
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109882
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109883
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109884
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109885
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109886
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109887
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "hjoin_tests_tasks" ("task_id", "hjoin_test_id") VALUES (1, 1)[0m
|
109888
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109889
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109890
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109891
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109892
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109893
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109894
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
109895
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109896
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
109897
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109898
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1 LIMIT 1
|
109899
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109900
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109901
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109902
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
109903
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109904
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109905
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109906
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109907
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109908
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109909
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109910
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109911
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109912
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109913
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109914
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
|
109915
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109916
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109917
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109918
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109919
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109920
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109921
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109922
|
+
[1m[35mHoneTest Load (0.2ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109923
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109924
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109925
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109926
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109927
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109928
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109929
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109930
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109931
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109932
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
109933
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109934
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109935
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109936
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hmanythrough_test: \n - created_at: \n title: HJoin\n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109937
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109938
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109939
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
109940
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
109941
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109942
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109943
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
109944
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
109945
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109946
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109947
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109948
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109949
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109950
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["exdata", nil], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109951
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109952
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109953
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109954
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
109955
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
109956
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109957
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109958
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
109959
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109960
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109961
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109962
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109963
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109964
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
109965
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109966
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109967
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109968
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
109969
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
109970
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109972
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
109973
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109974
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
109975
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109976
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hmanythrough_test=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109977
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109978
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109979
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
109980
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
109981
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109982
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109984
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109985
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["exdata", nil], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109986
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
109987
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109988
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
109989
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
109990
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
109991
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
109992
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
109993
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109994
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
109995
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
109996
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
109997
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
109998
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
109999
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110000
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
110001
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110002
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110003
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110004
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110005
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110006
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110007
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110008
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110009
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110010
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110011
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110012
|
+
[1m[35mSQL (1.7ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hmanythrough_join=>[{"exdata"=>"Data", "created_at"=>nil, "task_id"=>nil, "updated_at"=>nil, :associations=>{:hmanythrough_test=>[{"created_at"=>nil, "title"=>"Hello", "updated_at"=>nil, "id"=>nil}]}, "id"=>nil, "hmanythrough_test_id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110013
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110014
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110015
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110016
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110017
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110018
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
110019
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110020
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
110021
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110022
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["title", "Hello"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110023
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110024
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110025
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["exdata", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110026
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110027
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110028
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110029
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110030
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
110031
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110032
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
110033
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110034
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
110035
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110036
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
110037
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110038
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
110039
|
+
[1m[36mHmanythroughJoin Load (0.1ms)[0m [1mSELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1[0m
|
110040
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110041
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hmanythrough_join: \n - exdata: Data\n created_at: \n task_id: \n updated_at: \n :associations: \n :hmanythrough_test: \n - created_at: \n title: Hello\n updated_at: \n id: \n id: \n hmanythrough_test_id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110042
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110043
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmanythrough_tests" [0m
|
110044
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
110045
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110046
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110047
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110048
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110049
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110050
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110051
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110052
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["title", "Hello"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110053
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110054
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110055
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["exdata", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110056
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110057
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110058
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110059
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110060
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110061
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110062
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
110063
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110064
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
110065
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110066
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
110067
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110068
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
110069
|
+
[1m[36mHmanythroughJoin Load (0.1ms)[0m [1mSELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1[0m
|
110070
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110071
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110072
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110073
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hone_as_test: \n - created_at: \n title: Hone\n updated_at: \n testable_id: \n testable_type: Task\n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110074
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110075
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
110076
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
110077
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110078
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110079
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110080
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110081
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110082
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110084
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hone_as_tests" ("created_at", "testable_id", "testable_type", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["testable_id", 1], ["testable_type", "Task"], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110085
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110086
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110087
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110088
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110089
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110090
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110091
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
110092
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110093
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110094
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110095
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110096
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110097
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110098
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110099
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110100
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110101
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110102
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110103
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110105
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110106
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110107
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110108
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110109
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:hone_as_test=>[{"created_at"=>nil, "title"=>"Hone", "updated_at"=>nil, "testable_id"=>1, "testable_type"=>"Task", "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110110
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110111
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110112
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110113
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110114
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110115
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
110116
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110117
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110118
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110119
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hone_as_tests" ("created_at", "testable_id", "testable_type", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["testable_id", 1], ["testable_type", "Task"], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110120
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110121
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110122
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110123
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110124
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110125
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110126
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110127
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
110128
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110129
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110130
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110131
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110132
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110133
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :hone_test: \n - created_at: \n task_id: \n title: Hone\n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110134
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110135
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
110136
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
110137
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110138
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110139
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110140
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110141
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110142
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110143
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110144
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["task_id", 1], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110145
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110146
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110147
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110149
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110150
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110151
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
110152
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110153
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110154
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110155
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110156
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
110157
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110158
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110159
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110160
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110161
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110162
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110163
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110164
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110165
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110166
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110167
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110168
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110169
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:hone_test=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Hone", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110170
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110171
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110172
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110173
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110174
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110175
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
110176
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110177
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110178
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110179
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["task_id", 1], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110180
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110181
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110182
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110183
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110184
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110185
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110186
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110187
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
110188
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110189
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110190
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110191
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "TEST--- \n:associations: \n:main_model: \n created_at: \n title: TEST\n updated_at: \n id: \n foo: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110192
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110193
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110194
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110195
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n created_at: \n title: \"\"\n updated_at: \n id: \n foo: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110196
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110197
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110199
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "hook_tests" ("created_at", "foo", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["foo", nil], ["title", ""], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110200
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110201
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110202
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110203
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110204
|
+
[1m[35mHookTest Load (0.2ms)[0m SELECT "hook_tests".* FROM "hook_tests" LIMIT 1
|
110205
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110206
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "TEST--- TEST\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110207
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110208
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110209
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110210
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: TEST\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110211
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110212
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110213
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110214
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "photo_holders" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["title", nil], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110215
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n photo: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1950-629-4477/test.jpg\n id: \n photo_holder_id: 1\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110216
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110217
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
110218
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110219
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110220
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["photo", "test.jpg"], ["photo_holder_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110221
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110223
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110224
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110225
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
110226
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
110227
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110228
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n photo: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1950-629-3614/test.jpg\n id: \n photo_holder_id: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110229
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110230
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
110231
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110232
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110233
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["photo", "test.jpg"], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110234
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110236
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110237
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110238
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
110239
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
110240
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110241
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n photo: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1950-629-6363/test.jpg\n id: \n photo_holder_id: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110242
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
110243
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
110244
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110245
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110246
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110247
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110248
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
110249
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110250
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n:main_model: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110251
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110252
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
110253
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110254
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110255
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["photo", nil], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110256
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110257
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110258
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110259
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110260
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
110261
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110262
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
110263
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "photos" SET "photo" = NULL, "updated_at" = '2011-10-18 17:50:14.658680' WHERE "photos"."id" = 1[0m
|
110264
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "photo_tmp_file"], ["attr_value", "/Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1950-629-1934/test.jpg"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110265
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110266
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
110267
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110268
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110269
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1[0m
|
110270
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110271
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", 1]]
|
110272
|
+
[1m[35m (0.1ms)[0m UPDATE "photos" SET "photo" = 'test.jpg', "updated_at" = '2011-10-18 17:50:14.748095' WHERE "photos"."id" = 1
|
110273
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110274
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110275
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110276
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110277
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
110278
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110279
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :task_photos: \n - photo: \n task_id: \n created_at: \n updated_at: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-1950-629-9307/test.jpg\n id: \n:main_model: \n created_at: \n title: Task 1\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110280
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110281
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110282
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
110283
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_photos" [0m
|
110284
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110285
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110286
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110287
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110288
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110289
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110290
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110291
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_photos" ("created_at", "photo", "task_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["photo", "test.jpg"], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110292
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110293
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110294
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110295
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110296
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110297
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110298
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
110299
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110300
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110301
|
+
[1m[36mTaskPhoto Load (0.1ms)[0m [1mSELECT "task_photos".* FROM "task_photos" WHERE "task_photos"."task_id" = 1 LIMIT 1[0m
|
110302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110303
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110304
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110305
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110306
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
110307
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110308
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110309
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110310
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110311
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110312
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110313
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110314
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110315
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110316
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110317
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110318
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110319
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110320
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
110321
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110322
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110323
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110324
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110325
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110327
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110328
|
+
[1m[35mHoneTest Load (0.2ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110329
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110330
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110331
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110332
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110333
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110334
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110335
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110336
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110337
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110338
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110339
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110340
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110341
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110342
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110343
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110344
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110345
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110346
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110347
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110348
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110349
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110350
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110351
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110352
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110353
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110354
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110355
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110356
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110357
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110358
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
110359
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110360
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110361
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110362
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110363
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "title" = 'Hollywood Hills', "updated_at" = '2011-10-18 17:50:14.872011' WHERE "tasks"."id" = 1[0m
|
110364
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110365
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110366
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110367
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110368
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 5]]
|
110369
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110370
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110371
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110372
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110373
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110374
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110375
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110376
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110377
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110378
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110379
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110380
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
110381
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110382
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110383
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110384
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110385
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110386
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110387
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110388
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110389
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110390
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110391
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110392
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110393
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110394
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110395
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
|
110396
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110397
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110398
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110399
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110400
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110401
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110402
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110403
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110404
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110405
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110406
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110407
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - created_at: \n task_id: \n title: Hollywood Hills\n updated_at: \n id: \n task_all_id: \n desc: \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110408
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110409
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110410
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
110411
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110412
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110413
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110414
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110415
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110416
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110417
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110418
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110419
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110420
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110421
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110422
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110423
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110424
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110425
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110426
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110427
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110428
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
110429
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110430
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110431
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110432
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
110433
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110434
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110435
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", "Hollywood Hills"], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110436
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110437
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110438
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110439
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110440
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110441
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110442
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
110443
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110444
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110445
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110446
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110447
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110448
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110449
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110450
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110451
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110452
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110453
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110454
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110455
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110456
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110457
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110458
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110459
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "desc"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110460
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110461
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110462
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110463
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110464
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110465
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110466
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
110467
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110468
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "desc" = 'Hollywood Hills', "updated_at" = '2011-10-18 17:50:15.093765' WHERE "tasks"."id" = 1
|
110469
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110470
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110471
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110472
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110473
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110474
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110475
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110476
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110477
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110478
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110479
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
110480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110481
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110482
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110483
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - 1\n:main_model: \n created_at: \n title: Hollywood Hills\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110484
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110485
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110486
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
110487
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1[0m
|
110488
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110489
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110490
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110491
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110492
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110493
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110494
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
110495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110496
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:50:15.120072' WHERE "subtasks"."id" = 1
|
110497
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110498
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110499
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110500
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110501
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110502
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110503
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
110504
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
110505
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110506
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
110507
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
110508
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110509
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - created_at: \n task_id: \n title: Hollywood Hills\n updated_at: \n id: \n task_all_id: \n desc: \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n value: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "TaskAll"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110510
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110511
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_alls" [0m
|
110512
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
110513
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110514
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110515
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_alls" ("created_at", "title", "updated_at", "value") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["value", nil]]
|
110516
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110517
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110518
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", 1], ["task_id", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110519
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110520
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110521
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110522
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110523
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110524
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110525
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_alls" [0m
|
110526
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
110527
|
+
[1m[36mTaskAll Load (0.1ms)[0m [1mSELECT "task_alls".* FROM "task_alls" LIMIT 1[0m
|
110528
|
+
[1m[35mTaskAll Load (0.1ms)[0m SELECT "task_alls".* FROM "task_alls" LIMIT 1
|
110529
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_all_id" = 1 LIMIT 1[0m
|
110530
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110531
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110532
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110533
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
110534
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
110535
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110537
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :subtasks: \n - 1\n:main_model: \n created_at: \n title: Hollywood Hills\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110538
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110539
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110540
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "subtasks"
|
110541
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
110542
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110543
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110544
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110545
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110546
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110547
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110548
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
110549
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110550
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110551
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110552
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110553
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110554
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
110555
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110556
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110557
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110558
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110559
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110560
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110561
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110562
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110563
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110564
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110565
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110566
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110567
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110568
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110569
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110570
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "destroy"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110571
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110572
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
110573
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110574
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
110575
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110576
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task'
|
110577
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110578
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
110579
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 1]]
|
110580
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110581
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110582
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
110583
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110584
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
110585
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110586
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110587
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110588
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110589
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110590
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110591
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110592
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110593
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110594
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110595
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110596
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110597
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110598
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110599
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Hollywood Hills", "updated_at"=>nil, "id"=>nil, "task_all_id"=>nil, "desc"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110600
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110601
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110602
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110603
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110604
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110605
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110606
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
110607
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
110608
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110609
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110610
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110611
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110612
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110613
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110614
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110615
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110616
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
110617
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110618
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
110619
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
110620
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110621
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
110622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110623
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110624
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110625
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110626
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110627
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110628
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110629
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110630
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110631
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110632
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110633
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110634
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110635
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110636
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110637
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110638
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110639
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[1]}}], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110640
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110641
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110642
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
110643
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110644
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110645
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110646
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110647
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110648
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110649
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110650
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
110651
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110652
|
+
[1m[35m (0.2ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:50:15.363075' WHERE "subtasks"."id" = 1
|
110653
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110654
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110655
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110656
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110657
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
110658
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110659
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110660
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
110661
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110662
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
110663
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110664
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110665
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110666
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110667
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110668
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110669
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110670
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110671
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110672
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110673
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110674
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110675
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
110676
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110677
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Jo jo", "updated_at"=>nil, "id"=>nil, "task_all_id"=>nil, "desc"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110678
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110679
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110680
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110681
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110682
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110683
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110684
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110685
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
110686
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110687
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110688
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110689
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110690
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110691
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110692
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110693
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110694
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
110695
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110696
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
110697
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
110698
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110699
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110700
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110701
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110702
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110703
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110704
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110705
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110706
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110707
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110708
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110709
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110710
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110711
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110712
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110713
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
110714
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110715
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
110716
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110717
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[1]}}], ["created_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
|
110718
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110719
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110720
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
110721
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110722
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
110723
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
110724
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110725
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:50:15.429543' WHERE "subtasks"."id" = 1[0m
|
110726
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110727
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110728
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110729
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110730
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
110731
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110732
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110733
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
110734
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
110735
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110736
|
+
[1m[35mSQL (4.4ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00]]
|
110737
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110738
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110739
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110740
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110741
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110742
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00]]
|
110743
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110744
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110745
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110746
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110747
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110748
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110749
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110750
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
|
110751
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110752
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00]]
|
110753
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110754
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
110755
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110756
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110757
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00]]
|
110758
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
110759
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
110760
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110761
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110762
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
110763
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110764
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
110765
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110766
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:27 UTC +00:00]]
|
110767
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110768
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110769
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
110770
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
110771
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110772
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:48 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:48 UTC +00:00]]
|
110773
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110774
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110775
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110776
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110777
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110778
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00]]
|
110779
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110780
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110781
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110782
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110783
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00]]
|
110784
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110785
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110786
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110787
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110788
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00]]
|
110789
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110790
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110791
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110792
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110793
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110794
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110795
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110796
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110797
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00]]
|
110798
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110799
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110800
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110801
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110802
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110803
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
|
110804
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110805
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110806
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110807
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110808
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110809
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
|
110810
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110811
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110812
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110813
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110814
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
|
110815
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110816
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110817
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110818
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110819
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
|
110820
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110821
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110822
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110824
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110825
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110826
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110828
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
|
110829
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110830
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110831
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110832
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110833
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110834
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
|
110835
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110836
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110837
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110838
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110839
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110840
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
|
110841
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110842
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110843
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110844
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110845
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
|
110846
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110847
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110848
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110849
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110850
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
|
110851
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110852
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110853
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110854
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110855
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110856
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110857
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110858
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110859
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
|
110860
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110861
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110862
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110863
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110864
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110865
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:56:49 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:49 UTC +00:00]]
|
110866
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110867
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110868
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110869
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110870
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110871
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00]]
|
110872
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110873
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110874
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110875
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110876
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00]]
|
110877
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110878
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110879
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110881
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00]]
|
110882
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110883
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110884
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110885
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110886
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110887
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110888
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110889
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110890
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00]]
|
110891
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110892
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110893
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110894
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110896
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n"], ["created_at", Tue, 18 Oct 2011 17:57:05 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:05 UTC +00:00]]
|
110897
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110898
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110899
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110900
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110901
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110902
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:57:05 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:57:05 UTC +00:00]]
|
110903
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110904
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110905
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110906
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
110907
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00]]
|
110908
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110909
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110910
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110911
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110912
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00]]
|
110913
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110914
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110915
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110916
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110917
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110918
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110919
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110920
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110921
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00]]
|
110922
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110923
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110924
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110925
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110926
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110927
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
|
110928
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110929
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110930
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110931
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110932
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110933
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
|
110934
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110935
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110936
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110937
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110938
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
|
110939
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110940
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110941
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110942
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110943
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
|
110944
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110945
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110946
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110947
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110948
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110949
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
110950
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110951
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110952
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
|
110953
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110954
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110955
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110956
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110957
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110958
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
|
110959
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110960
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110961
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110962
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110964
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
|
110965
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110966
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110967
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110968
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110969
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
|
110970
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110971
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110972
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110973
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110974
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
|
110975
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110976
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110977
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110978
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110979
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
110980
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110981
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
110982
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
110983
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
|
110984
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
110985
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
110986
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110987
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
110988
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
110989
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
110990
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110991
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
110992
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
110993
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
110994
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
110995
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
110996
|
+
[1m[36mHoneTest Load (0.4ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
110997
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
110998
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
110999
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111000
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["something_id", 1], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
111001
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111003
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111004
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111005
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111006
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111007
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111008
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1[0m
|
111009
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111010
|
+
[1m[36mHmanyFkTest Load (0.1ms)[0m [1mSELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1[0m
|
111011
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111012
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
111013
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111014
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111015
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111016
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111017
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
111018
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111019
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111020
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111021
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111022
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111023
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111024
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111025
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111026
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
111027
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111028
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
111029
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111030
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
111031
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111032
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00], ["something_id", 1], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
|
111033
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111034
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111035
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111036
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111037
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111038
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111039
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
111040
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111041
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
|
111042
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111043
|
+
[1m[35mHmanyFkTest Load (0.1ms)[0m SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
|
111044
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111045
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111046
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111047
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
111048
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111049
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111050
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111051
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111052
|
+
[1m[36mHoneTest Load (0.9ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111053
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111054
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111055
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111056
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["something_id", 1], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111057
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111058
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111059
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111060
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111061
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111062
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111063
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111064
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1[0m
|
111065
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111066
|
+
[1m[36mHmanyFkTest Load (0.1ms)[0m [1mSELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1[0m
|
111067
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111068
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111069
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111070
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111071
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111073
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111074
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111075
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111076
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111077
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111078
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111079
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111080
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111082
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111083
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111084
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
111085
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111086
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
111087
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
111088
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00], ["something_id", 1], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
|
111089
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111090
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111091
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111092
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111093
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111094
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111095
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
111096
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111097
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
|
111098
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111099
|
+
[1m[35mHmanyFkTest Load (0.1ms)[0m SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
|
111100
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111101
|
+
[1m[35mSQL (4.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 18:08:08 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:08:08 UTC +00:00]]
|
111102
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111103
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111104
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111105
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111106
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:08:08 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:08:08 UTC +00:00]]
|
111107
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111108
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111109
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111110
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111111
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111112
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111113
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111114
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111115
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
111116
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
111117
|
+
Migrating to CreateTasks (20110901013205)
|
111118
|
+
Migrating to CreateSubtasks (20110901013228)
|
111119
|
+
Migrating to CreateModerations (20110901013618)
|
111120
|
+
Migrating to CreateTaskAlls (20110908025410)
|
111121
|
+
Migrating to AddTaskAllIdToSubtasks (20110908025606)
|
111122
|
+
Migrating to CreatePhotos (20111003205633)
|
111123
|
+
Migrating to CreateTaskPhotos (20111003234101)
|
111124
|
+
Migrating to CreateHookTests (20111004153147)
|
111125
|
+
Migrating to CreatePhotoHolders (20111004164509)
|
111126
|
+
Migrating to CreateHoneTests (20111008195728)
|
111127
|
+
Migrating to CreateHjoinTests (20111008195809)
|
111128
|
+
Migrating to FixJoinTable (20111009193145)
|
111129
|
+
Migrating to AddTitleToHoneTests (20111009201729)
|
111130
|
+
Migrating to CreateHmanythroughTests (20111009205517)
|
111131
|
+
Migrating to CreateHmanythroughJoins (20111009205545)
|
111132
|
+
Migrating to CreateHoneAsTests (20111018172409)
|
111133
|
+
Migrating to CreateHmanyFkTests (20111018174319)
|
111134
|
+
Migrating to CreateHabtmNameTests (20111018180207)
|
111135
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
111136
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
111137
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "habtm_name_tests_tasks" ("task_id" integer, "habtm_name_test_id" integer)
|
111138
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20111018180207')[0m
|
111139
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
111140
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
111141
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("habtm_name_tests")
|
111142
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("habtm_name_tests_tasks")[0m
|
111143
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hjoin_tests")
|
111144
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hjoin_tests_tasks")[0m
|
111145
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmany_fk_tests")
|
111146
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hmanythrough_joins")[0m
|
111147
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hmanythrough_tests")
|
111148
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hone_as_tests")[0m
|
111149
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("hone_tests")
|
111150
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("hook_tests")[0m
|
111151
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("moderations")
|
111152
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("photo_holders")[0m
|
111153
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("photos")
|
111154
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("subtasks")[0m
|
111155
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("task_alls")
|
111156
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("task_photos")[0m
|
111157
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("tasks")
|
111158
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111159
|
+
[1m[35mSQL (4.0ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:associations: {}\n\n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 18:08:52 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:08:52 UTC +00:00]]
|
111160
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111161
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111162
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111163
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111164
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:08:52 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:08:52 UTC +00:00]]
|
111165
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111166
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111167
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111169
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111170
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111171
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111172
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111173
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:habtms=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:08:52 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:08:52 UTC +00:00]]
|
111174
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111175
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests"
|
111176
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111177
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111178
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111179
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00]]
|
111180
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111181
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111182
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111183
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111184
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00]]
|
111185
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111186
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111187
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111188
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111189
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111190
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111191
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111192
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111193
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:habtms=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00]]
|
111194
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111195
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests"
|
111196
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111197
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111198
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111199
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111200
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111201
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "habtm_name_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:00 UTC +00:00]]
|
111202
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "habtm_name_tests_tasks" ("task_id", "habtm_name_test_id") VALUES (1, 1)[0m
|
111203
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111204
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111205
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111206
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111207
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111208
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111209
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests"
|
111210
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111211
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests" INNER JOIN "habtm_name_tests_tasks" ON "habtm_name_tests"."id" = "habtm_name_tests_tasks"."habtm_name_test_id" WHERE "habtm_name_tests_tasks"."task_id" = 1
|
111212
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111213
|
+
[1m[35mHabtmNameTest Load (0.1ms)[0m SELECT "habtm_name_tests".* FROM "habtm_name_tests" INNER JOIN "habtm_name_tests_tasks" ON "habtm_name_tests"."id" = "habtm_name_tests_tasks"."habtm_name_test_id" WHERE "habtm_name_tests_tasks"."task_id" = 1 LIMIT 1
|
111214
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111215
|
+
[1m[35mSQL (4.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111216
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111217
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111218
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111219
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111220
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111221
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111222
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111223
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111224
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111225
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111226
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111227
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111228
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111229
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:habtms=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111230
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111231
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests"
|
111232
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111233
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111234
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111235
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111236
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111237
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "habtm_name_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111238
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "habtm_name_tests_tasks" ("task_id", "habtm_name_test_id") VALUES (1, 1)[0m
|
111239
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111240
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111241
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111242
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111243
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111244
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111245
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests"
|
111246
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111247
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "habtm_name_tests" INNER JOIN "habtm_name_tests_tasks" ON "habtm_name_tests"."id" = "habtm_name_tests_tasks"."habtm_name_test_id" WHERE "habtm_name_tests_tasks"."task_id" = 1
|
111248
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111249
|
+
[1m[35mHabtmNameTest Load (0.1ms)[0m SELECT "habtm_name_tests".* FROM "habtm_name_tests" INNER JOIN "habtm_name_tests_tasks" ON "habtm_name_tests"."id" = "habtm_name_tests_tasks"."habtm_name_test_id" WHERE "habtm_name_tests_tasks"."task_id" = 1 LIMIT 1
|
111250
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111251
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :hjoin_tests: \n - created_at: \n title: HJoin\n updated_at: \n id: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111252
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111253
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
111254
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111255
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111256
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111257
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111258
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111259
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111260
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111261
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111262
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111263
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111264
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111265
|
+
[1m[35m (0.1ms)[0m INSERT INTO "hjoin_tests_tasks" ("task_id", "hjoin_test_id") VALUES (1, 1)
|
111266
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111268
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111269
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111270
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111271
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111272
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111273
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
111274
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111275
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1 LIMIT 1
|
111276
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111277
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111278
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111279
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111280
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111281
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111282
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111283
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111284
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111285
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111286
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111287
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111288
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111289
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111290
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111291
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hjoin_tests=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111292
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111293
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
111294
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111295
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111296
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111297
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111298
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111299
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111300
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)[0m
|
111301
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111302
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111303
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111304
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111305
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111306
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111307
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests"
|
111308
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111309
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1
|
111310
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111311
|
+
[1m[35mHjoinTest Load (0.1ms)[0m SELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1 LIMIT 1
|
111312
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111313
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :lalas: \n - created_at: \n title: HJoin\n something_id: \n updated_at: \n id: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111314
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111315
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
111316
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111317
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111318
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111319
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111320
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111321
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111322
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111323
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111324
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["something_id", 1], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111325
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111326
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111327
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111328
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111329
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111330
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111331
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111332
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1[0m
|
111333
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111334
|
+
[1m[36mHmanyFkTest Load (0.1ms)[0m [1mSELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1[0m
|
111335
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111336
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111337
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111338
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111339
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111340
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111341
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111342
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111343
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111344
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111345
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111346
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111347
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111348
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111350
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:lalas=>[{"created_at"=>nil, "title"=>"HJoin", "something_id"=>1, "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111351
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111352
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmany_fk_tests" [0m
|
111353
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111354
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
111355
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111356
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["something_id", 1], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111357
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111358
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111359
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111360
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111361
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111362
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111363
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests"
|
111364
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111365
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
|
111366
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111367
|
+
[1m[35mHmanyFkTest Load (0.1ms)[0m SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
|
111368
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111369
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :hmanythrough_test: \n - created_at: \n title: HJoin\n updated_at: \n id: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111370
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111371
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
111372
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111373
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111374
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111375
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111376
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111377
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111378
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111379
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111380
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111381
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111382
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111383
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["exdata", nil], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111384
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111386
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111387
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111388
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111389
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111390
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111391
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
111392
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111393
|
+
[1m[35mHmanythroughTest Load (0.2ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
111394
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111395
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111396
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111397
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111398
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111399
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111400
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111401
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111402
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111403
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111404
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111405
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111406
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111407
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111408
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111409
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hmanythrough_test=>[{"created_at"=>nil, "title"=>"HJoin", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111410
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111411
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
111412
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111413
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111415
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111416
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111417
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "HJoin"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111418
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["exdata", nil], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111419
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111420
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111421
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111422
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111423
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111424
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111425
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
111426
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111427
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
111428
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111429
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
111430
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111431
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111432
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111433
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111434
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111435
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111436
|
+
[1m[36mSQL (2.0ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111437
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111438
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111439
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111440
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111441
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111442
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111443
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111444
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111445
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:hmanythrough_join=>[{"exdata"=>"Data", "created_at"=>nil, "task_id"=>nil, "updated_at"=>nil, "id"=>nil, "hmanythrough_test_id"=>nil, :associations=>{:hmanythrough_test=>[{"created_at"=>nil, "title"=>"Hello", "updated_at"=>nil, "id"=>nil}]}}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111446
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111447
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111448
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111449
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111450
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111451
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
111452
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111453
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111454
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111455
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "Hello"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111456
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111457
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111458
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["exdata", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111459
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111460
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111461
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111462
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111463
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
111464
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111465
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
111466
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111467
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
111468
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111469
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
111470
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111471
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
111472
|
+
[1m[36mHmanythroughJoin Load (0.1ms)[0m [1mSELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1[0m
|
111473
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111474
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :hmanythrough_join: \n - exdata: Data\n created_at: \n task_id: \n updated_at: \n id: \n hmanythrough_test_id: \n :associations: \n :hmanythrough_test: \n - created_at: \n title: Hello\n updated_at: \n id: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111475
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111476
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hmanythrough_tests" [0m
|
111477
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111478
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111479
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111480
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111481
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111482
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111483
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111484
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111485
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "hmanythrough_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", "Hello"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111486
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111487
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111488
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "hmanythrough_joins" ("created_at", "exdata", "hmanythrough_test_id", "task_id", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["exdata", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111489
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111490
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111491
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111493
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111494
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111495
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests"
|
111496
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111497
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1
|
111498
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111499
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
111500
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111501
|
+
[1m[35mHmanythroughTest Load (0.1ms)[0m SELECT "hmanythrough_tests".* FROM "hmanythrough_tests" INNER JOIN "hmanythrough_joins" ON "hmanythrough_tests"."id" = "hmanythrough_joins"."hmanythrough_test_id" WHERE "hmanythrough_joins"."task_id" = 1 LIMIT 1
|
111502
|
+
[1m[36mHmanythroughJoin Load (0.1ms)[0m [1mSELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1[0m
|
111503
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111504
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111505
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111506
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :hone_as_test: \n - created_at: \n title: Hone\n updated_at: \n testable_id: \n testable_type: Task\n id: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111507
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111508
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
111509
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111510
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111511
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111512
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111513
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111514
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111515
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111516
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111517
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hone_as_tests" ("created_at", "testable_id", "testable_type", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["testable_id", 1], ["testable_type", "Task"], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111518
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111519
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111520
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111521
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111522
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111523
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111524
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
111525
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111526
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111527
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111528
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111529
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111530
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111531
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111532
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111533
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111534
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111535
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111536
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111537
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111538
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111539
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111540
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111541
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111542
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:hone_as_test=>[{"created_at"=>nil, "title"=>"Hone", "updated_at"=>nil, "testable_id"=>1, "testable_type"=>"Task", "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111544
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111545
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111546
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111547
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111548
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
111549
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111550
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
111551
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111552
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hone_as_tests" ("created_at", "testable_id", "testable_type", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["testable_id", 1], ["testable_type", "Task"], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111553
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111554
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111556
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111557
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111558
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
111559
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111560
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_as_tests" [0m
|
111561
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111562
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111563
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111564
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111565
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111566
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: \n :hone_test: \n - created_at: \n task_id: \n title: Hone\n updated_at: \n id: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111567
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111568
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
111569
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "tasks"
|
111570
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111572
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111573
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111574
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111575
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111576
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111577
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["task_id", 1], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111578
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111579
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111580
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111581
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111582
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111583
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111584
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
111585
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111586
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111587
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111588
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Test\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111589
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111590
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111591
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111592
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111593
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["desc", nil], ["title", "Test"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111594
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111595
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111596
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111597
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111598
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111599
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111600
|
+
[1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111601
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111602
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", {:associations=>{:hone_test=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Hone", "updated_at"=>nil, "id"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111603
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111605
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111606
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111607
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111608
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
111609
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111610
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
111611
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111612
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["task_id", 1], ["title", "Hone"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111613
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111614
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111615
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111616
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111617
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111618
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
111619
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111620
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "hone_tests" [0m
|
111621
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111622
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111623
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111624
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "TEST--- \n:main_model: \n created_at: \n title: TEST\n updated_at: \n id: \n foo: \n:associations: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111625
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111626
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111627
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111628
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: \"\"\n updated_at: \n id: \n foo: \n:associations: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111629
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111630
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111632
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "hook_tests" ("created_at", "foo", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["foo", nil], ["title", ""], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111633
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111634
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111635
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111636
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111637
|
+
[1m[35mHookTest Load (0.1ms)[0m SELECT "hook_tests".* FROM "hook_tests" LIMIT 1
|
111638
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111639
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "TEST--- TEST\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "HookTest"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111640
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111641
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111642
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111643
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: TEST\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111644
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111645
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111646
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111647
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "photo_holders" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["title", nil], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111648
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n photo: \n created_at: \n updated_at: \n id: \n photo_holder_id: 1\n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-2013-676-6514/test.jpg\n:associations: \n"], ["created_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
|
111649
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111650
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
111651
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111652
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111653
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["photo", "test.jpg"], ["photo_holder_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111654
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111655
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111656
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111657
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111658
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
111659
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
111660
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111661
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n photo: \n created_at: \n updated_at: \n id: \n photo_holder_id: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-2013-676-4954/test.jpg\n:associations: \n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111662
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111663
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
111664
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111665
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111666
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["photo", "test.jpg"], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111667
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111668
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111669
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111670
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111671
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
111672
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
111673
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111674
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n photo: \n created_at: \n updated_at: \n id: \n photo_holder_id: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-2013-676-1702/test.jpg\n:associations: \n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111675
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111676
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
111677
|
+
[1m[35mModeration Load (0.2ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111678
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111679
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111680
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111681
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
111682
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111683
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n:associations: \n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111684
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111685
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
111686
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111687
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111688
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("created_at", "photo", "photo_holder_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["photo", nil], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111689
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111690
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111691
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111692
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111693
|
+
[1m[35mPhoto Load (0.2ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
111694
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111695
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
111696
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "photos" SET "photo" = NULL, "updated_at" = '2011-10-18 18:13:10.102328' WHERE "photos"."id" = 1[0m
|
111697
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "photo_tmp_file"], ["attr_value", "/Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-2013-676-0616/test.jpg"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Photo"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111698
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111699
|
+
[1m[35mPhoto Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
111700
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
111701
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111702
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1[0m
|
111703
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111704
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", 1]]
|
111705
|
+
[1m[35m (0.1ms)[0m UPDATE "photos" SET "photo" = 'test.jpg', "updated_at" = '2011-10-18 18:13:10.117575' WHERE "photos"."id" = 1
|
111706
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111708
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
111709
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111710
|
+
[1m[36mPhoto Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
111711
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111712
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Task 1\n updated_at: \n id: \n desc: \n:associations: \n :task_photos: \n - photo: \n task_id: \n created_at: \n updated_at: \n id: \n :photo_tmp_file: /Users/apple/rails/has_moderated/test/dummy/public/uploads/tmp/20111018-2013-676-0294/test.jpg\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111713
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111714
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
111715
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111716
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_photos" [0m
|
111717
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111718
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111719
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111720
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111721
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111722
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111723
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111724
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_photos" ("created_at", "photo", "task_id", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["photo", "test.jpg"], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111725
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111726
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111727
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111728
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111729
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111730
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111731
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111732
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111733
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111734
|
+
[1m[36mTaskPhoto Load (0.1ms)[0m [1mSELECT "task_photos".* FROM "task_photos" WHERE "task_photos"."task_id" = 1 LIMIT 1[0m
|
111735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111736
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111737
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111738
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111739
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
111740
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111741
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111742
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111743
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111744
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111745
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111746
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111747
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111748
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111749
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111750
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111751
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111752
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
111753
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
111754
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
111755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111756
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111757
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111758
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111759
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111760
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111761
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111762
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111763
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111764
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111765
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111766
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111767
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111768
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111769
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111770
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111771
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111772
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111773
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111774
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111775
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111776
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111777
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111778
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111779
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111780
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111781
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111782
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111783
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111784
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111785
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111786
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111787
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111788
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111789
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111790
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111791
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
111792
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
111793
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111794
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
111795
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111796
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "title" = 'Hollywood Hills', "updated_at" = '2011-10-18 18:13:10.327840' WHERE "tasks"."id" = 1[0m
|
111797
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111798
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111799
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111800
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111801
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 5]]
|
111802
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111803
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111804
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111805
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111806
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111807
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111808
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111809
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111810
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111811
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111812
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111813
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
111814
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111815
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111816
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111817
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111818
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111819
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111820
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111821
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111822
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111824
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111825
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111826
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
111827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111828
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "title"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111829
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111830
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111831
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111832
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111833
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111834
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
111835
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111836
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111837
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111838
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
111839
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111840
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: \n :subtasks: \n - created_at: \n task_id: \n title: Hollywood Hills\n updated_at: \n id: \n task_all_id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111841
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111842
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111843
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
111844
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111845
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111846
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111847
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111848
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111849
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111850
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111851
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111852
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111853
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111854
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111855
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111856
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111857
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111858
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
111859
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111860
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
111861
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
111862
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111863
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: Hollywood Hills\n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111864
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111865
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
111866
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111867
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111868
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", "Hollywood Hills"], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111869
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111870
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111871
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111872
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111873
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111874
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111875
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "moderations"
|
111876
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
111877
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111878
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111879
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111880
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111881
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111882
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111883
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111884
|
+
[1m[36mHoneTest Load (0.5ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111885
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111886
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111887
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111888
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111889
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111890
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
111891
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111892
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "desc"], ["attr_value", "--- Hollywood Hills\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111893
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
111894
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
111895
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111896
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
111897
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
111898
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111899
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111900
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111901
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "desc" = 'Hollywood Hills', "updated_at" = '2011-10-18 18:13:10.449370' WHERE "tasks"."id" = 1
|
111902
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111903
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111904
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111905
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111906
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
111907
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111908
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
111909
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111910
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111911
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111912
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
111913
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111914
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111916
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Hollywood Hills\n updated_at: \n id: \n desc: \n:associations: \n :subtasks: \n - 1\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111917
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111918
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111919
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
111920
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1[0m
|
111921
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111922
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111923
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111924
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111925
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111926
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111927
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
111928
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111929
|
+
[1m[35m (0.2ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 18:13:10.476192' WHERE "subtasks"."id" = 1
|
111930
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111932
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111933
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111934
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111935
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111936
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
111937
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
111938
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
111939
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
111940
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
111941
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111942
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n value: \n:associations: \n :subtasks: \n - created_at: \n task_id: \n title: Hollywood Hills\n updated_at: \n id: \n task_all_id: \n desc: \n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "TaskAll"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111943
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111944
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_alls" [0m
|
111945
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
111946
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
111947
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111948
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_alls" ("created_at", "title", "updated_at", "value") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["value", nil]]
|
111949
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111950
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111951
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", 1], ["task_id", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111952
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111953
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111954
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111955
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111956
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111957
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111958
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_alls" [0m
|
111959
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
111960
|
+
[1m[36mTaskAll Load (0.1ms)[0m [1mSELECT "task_alls".* FROM "task_alls" LIMIT 1[0m
|
111961
|
+
[1m[35mTaskAll Load (0.1ms)[0m SELECT "task_alls".* FROM "task_alls" LIMIT 1
|
111962
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_all_id" = 1 LIMIT 1[0m
|
111963
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111964
|
+
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111965
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111966
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
111967
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
111968
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111969
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111970
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Hollywood Hills\n updated_at: \n id: \n desc: \n:associations: \n :subtasks: \n - 1\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111971
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
111972
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
111973
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "subtasks"
|
111974
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
111975
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111976
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
111977
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111978
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111979
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111980
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111981
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
111982
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111983
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
111984
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111985
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
111986
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
111987
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
111988
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111989
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111990
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111991
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
111992
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
111993
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
111994
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
111995
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
111996
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
111997
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
111998
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
111999
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
112000
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
112001
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
112002
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112003
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "destroy"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112004
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112005
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
112006
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112007
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
112008
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112009
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task'
|
112010
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
112011
|
+
[1m[35mHabtmNameTest Load (0.1ms)[0m SELECT "habtm_name_tests".* FROM "habtm_name_tests" INNER JOIN "habtm_name_tests_tasks" ON "habtm_name_tests"."id" = "habtm_name_tests_tasks"."habtm_name_test_id" WHERE "habtm_name_tests_tasks"."task_id" = 1
|
112012
|
+
[1m[36mHjoinTest Load (0.1ms)[0m [1mSELECT "hjoin_tests".* FROM "hjoin_tests" INNER JOIN "hjoin_tests_tasks" ON "hjoin_tests"."id" = "hjoin_tests_tasks"."hjoin_test_id" WHERE "hjoin_tests_tasks"."task_id" = 1[0m
|
112013
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]]
|
112014
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112015
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112016
|
+
[1m[36mSQL (0.0ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
112017
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
112018
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
112019
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112020
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112021
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112022
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112023
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
112024
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112025
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
112026
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
112027
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112028
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112029
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
112030
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112031
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
112032
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
112033
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Hollywood Hills", "updated_at"=>nil, "id"=>nil, "task_all_id"=>nil, "desc"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112034
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112035
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
112036
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112037
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
112038
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
112039
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
112040
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
112041
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
112042
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112043
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
112044
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112045
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112046
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112047
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112048
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112049
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112050
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
112051
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112052
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
112053
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "subtasks"
|
112054
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
112055
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
112056
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112057
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112058
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112059
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112060
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112061
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112062
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112063
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112064
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112065
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
112066
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
112067
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112068
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112069
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
112070
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112071
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
112072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112073
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[1]}}], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112074
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112075
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
112076
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
112077
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112078
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
112079
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
112080
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112081
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
112082
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112083
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
112084
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
112085
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112086
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 18:13:10.725827' WHERE "subtasks"."id" = 1[0m
|
112087
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112088
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112089
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
112090
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112091
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
112092
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112093
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
112094
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
112095
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
112096
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
112097
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112098
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112099
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112100
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112101
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112102
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112103
|
+
[1m[35mHoneTest Load (0.1ms)[0m SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
|
112104
|
+
[1m[36mHoneAsTest Load (0.1ms)[0m [1mSELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1[0m
|
112105
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112106
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112107
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
112108
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112109
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
112110
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
112111
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[{"created_at"=>nil, "task_id"=>1, "title"=>"Jo jo", "updated_at"=>nil, "id"=>nil, "task_all_id"=>nil, "desc"=>nil}]}}], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112112
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112113
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112114
|
+
[1m[36mHoneTest Load (0.2ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
112115
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
112116
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112117
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
112118
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
112119
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
112120
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
112121
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
112122
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112123
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", 1], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112124
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112125
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112126
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112128
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
112129
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112130
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
112131
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
112132
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112133
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", "--- \n:main_model: \n created_at: \n title: Bye Bye\n updated_at: \n id: \n desc: \n:associations: {}\n\n"], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112134
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112135
|
+
[1m[35mModeration Load (0.2ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
112136
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112137
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112138
|
+
[1m[36mHoneTest Load (0.1ms)[0m [1mSELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1[0m
|
112139
|
+
[1m[35mHoneAsTest Load (0.1ms)[0m SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
|
112140
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112141
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112142
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
112143
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
112144
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112145
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "task_all_id", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["desc", nil], ["task_all_id", nil], ["task_id", nil], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112146
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112147
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
112148
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
112149
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
112150
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112151
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["attr_name", "-"], ["attr_value", {:associations=>{:subtasks=>[1]}}], ["created_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
|
112152
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112153
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
112154
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
112155
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
112156
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
112157
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
112158
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112159
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 18:13:10.887932' WHERE "subtasks"."id" = 1
|
112160
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112161
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112162
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
112163
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
112164
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
112165
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
112166
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
112167
|
+
[1m[35mSubtask Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
112168
|
+
[1m[36mSubtask Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|