has_moderated 0.0.25 → 0.0.26

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- arec.send(rec.class.to_s.underscore.pluralize) << rec
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
 
@@ -1,3 +1,3 @@
1
1
  module HasModerated
2
- VERSION = "0.0.25"
2
+ VERSION = "0.0.26"
3
3
  end
@@ -0,0 +1,3 @@
1
+ class HabtmNameTest < ActiveRecord::Base
2
+ has_and_belongs_to_many :owners, :class_name => "Task"
3
+ end
@@ -0,0 +1,3 @@
1
+ class HmanyFkTest < ActiveRecord::Base
2
+ belongs_to :bla, :class_name => "Task", :foreign_key => "something_id"
3
+ end
@@ -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,10 @@
1
+ class CreateHmanyFkTests < ActiveRecord::Migration
2
+ def change
3
+ create_table :hmany_fk_tests do |t|
4
+ t.integer :something_id
5
+ t.string :title
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -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
@@ -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 => 20111018172409) do
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"
Binary file
@@ -6191,3 +6191,266 @@ Migrating to CreateHoneAsTests (20111018172409)
6191
6191
   (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009201729')
6192
6192
   (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
6193
6193
   (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205545')
6194
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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
+  (0.0ms) select sqlite_version(*)
6213
+  (0.5ms) CREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6214
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111018174319')
6215
+  (0.1ms) select sqlite_version(*)
6216
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6217
+  (0.0ms) PRAGMA index_list("hjoin_tests")
6218
+  (0.0ms) PRAGMA index_list("hjoin_tests_tasks")
6219
+  (0.0ms) PRAGMA index_list("hmany_fk_tests")
6220
+  (0.0ms) PRAGMA index_list("hmanythrough_joins")
6221
+  (0.0ms) PRAGMA index_list("hmanythrough_tests")
6222
+  (0.0ms) PRAGMA index_list("hone_as_tests")
6223
+  (0.0ms) PRAGMA index_list("hone_tests")
6224
+  (0.0ms) PRAGMA index_list("hook_tests")
6225
+  (0.0ms) PRAGMA index_list("moderations")
6226
+  (0.0ms) PRAGMA index_list("photo_holders")
6227
+  (0.0ms) PRAGMA index_list("photos")
6228
+  (0.0ms) PRAGMA index_list("subtasks")
6229
+  (0.0ms) PRAGMA index_list("task_alls")
6230
+  (0.0ms) PRAGMA index_list("task_photos")
6231
+  (0.0ms) PRAGMA index_list("tasks")
6232
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6233
+  (0.1ms) select sqlite_version(*)
6234
+  (2.8ms) CREATE TABLE "hjoin_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6235
+  (1.5ms) CREATE TABLE "hjoin_tests_tasks" ("task_id" integer, "hjoin_test_id" integer)
6236
+  (1.8ms) CREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6237
+  (1.7ms) 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
+  (1.4ms) CREATE TABLE "hmanythrough_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6239
+  (1.8ms) 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
+  (1.4ms) CREATE TABLE "hone_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255)) 
6241
+  (1.9ms) CREATE TABLE "hook_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "foo" varchar(255), "created_at" datetime, "updated_at" datetime)
6242
+  (2.3ms) CREATE 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) 
6243
+  (1.6ms) CREATE TABLE "photo_holders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime)
6244
+  (1.5ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime, "photo_holder_id" integer) 
6245
+  (1.6ms) 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
+  (2.0ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
6247
+  (1.7ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime)
6248
+  (2.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
6249
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6250
+  (0.1ms) PRAGMA index_list("schema_migrations")
6251
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6252
+  (0.1ms) SELECT version FROM "schema_migrations"
6253
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018174319')
6254
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
6255
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
6256
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
6257
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
6258
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
6259
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
6260
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
6261
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111004153147')
6262
+  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20111004164509')
6263
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111008195728')
6264
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111008195809')
6265
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009193145')
6266
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009201729')
6267
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
6268
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205545')
6269
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018172409')
6270
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6271
+  (0.1ms) select sqlite_version(*)
6272
+  (2.7ms) CREATE TABLE "hjoin_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6273
+  (2.1ms) CREATE TABLE "hjoin_tests_tasks" ("task_id" integer, "hjoin_test_id" integer)
6274
+  (1.4ms) CREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6275
+  (1.6ms) 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
+  (1.5ms) CREATE TABLE "hmanythrough_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6277
+  (1.8ms) 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
+  (1.6ms) CREATE TABLE "hone_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255)) 
6279
+  (1.4ms) CREATE TABLE "hook_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "foo" varchar(255), "created_at" datetime, "updated_at" datetime)
6280
+  (1.4ms) CREATE 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) 
6281
+  (1.7ms) CREATE TABLE "photo_holders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime)
6282
+  (1.6ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime, "photo_holder_id" integer) 
6283
+  (1.9ms) 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
+  (1.7ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
6285
+  (1.7ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime)
6286
+  (2.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
6287
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6288
+  (0.1ms) PRAGMA index_list("schema_migrations")
6289
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6290
+  (0.1ms) SELECT version FROM "schema_migrations"
6291
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018174319')
6292
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
6293
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
6294
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
6295
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
6296
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
6297
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
6298
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
6299
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111004153147')
6300
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111004164509')
6301
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20111008195728')
6302
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111008195809')
6303
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009193145')
6304
+  (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009201729')
6305
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
6306
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205545')
6307
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018172409')
6308
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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
+  (0.0ms) select sqlite_version(*)
6328
+  (0.5ms) CREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6329
+  (0.2ms) CREATE TABLE "habtm_name_tests_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "habtm_name_test_id" integer)
6330
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111018180207')
6331
+  (0.1ms) select sqlite_version(*)
6332
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6333
+  (0.0ms) PRAGMA index_list("habtm_name_tests")
6334
+  (0.0ms) PRAGMA index_list("habtm_name_tests_tasks")
6335
+  (0.0ms) PRAGMA index_list("hjoin_tests")
6336
+  (0.0ms) PRAGMA index_list("hjoin_tests_tasks")
6337
+  (0.0ms) PRAGMA index_list("hmany_fk_tests")
6338
+  (0.0ms) PRAGMA index_list("hmanythrough_joins")
6339
+  (0.0ms) PRAGMA index_list("hmanythrough_tests")
6340
+  (0.0ms) PRAGMA index_list("hone_as_tests")
6341
+  (0.0ms) PRAGMA index_list("hone_tests")
6342
+  (0.0ms) PRAGMA index_list("hook_tests")
6343
+  (0.0ms) PRAGMA index_list("moderations")
6344
+  (0.0ms) PRAGMA index_list("photo_holders")
6345
+  (0.0ms) PRAGMA index_list("photos")
6346
+  (0.0ms) PRAGMA index_list("subtasks")
6347
+  (0.0ms) PRAGMA index_list("task_alls")
6348
+  (0.0ms) PRAGMA index_list("task_photos")
6349
+  (0.0ms) PRAGMA index_list("tasks")
6350
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6351
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6352
+ Migrating to CreateHabtmNameTests (20111018180207)
6353
+  (0.0ms) select sqlite_version(*)
6354
+  (0.8ms) DROP TABLE "habtm_name_tests_tasks"
6355
+  (0.4ms) DROP TABLE "habtm_name_tests"
6356
+  (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20111018180207'
6357
+  (0.1ms) select sqlite_version(*)
6358
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6359
+  (0.0ms) PRAGMA index_list("hjoin_tests")
6360
+  (0.0ms) PRAGMA index_list("hjoin_tests_tasks")
6361
+  (0.0ms) PRAGMA index_list("hmany_fk_tests")
6362
+  (0.0ms) PRAGMA index_list("hmanythrough_joins")
6363
+  (0.0ms) PRAGMA index_list("hmanythrough_tests")
6364
+  (0.0ms) PRAGMA index_list("hone_as_tests")
6365
+  (0.0ms) PRAGMA index_list("hone_tests")
6366
+  (0.0ms) PRAGMA index_list("hook_tests")
6367
+  (0.0ms) PRAGMA index_list("moderations")
6368
+  (0.0ms) PRAGMA index_list("photo_holders")
6369
+  (0.0ms) PRAGMA index_list("photos")
6370
+  (0.0ms) PRAGMA index_list("subtasks")
6371
+  (0.0ms) PRAGMA index_list("task_alls")
6372
+  (0.0ms) PRAGMA index_list("task_photos")
6373
+  (0.0ms) PRAGMA index_list("tasks")
6374
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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
+  (0.1ms) select sqlite_version(*)
6394
+  (0.5ms) CREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6395
+  (0.2ms) CREATE TABLE "habtm_name_tests_tasks" ("task_id" integer, "habtm_name_test_id" integer)
6396
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111018180207')
6397
+  (0.1ms) select sqlite_version(*)
6398
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6399
+  (0.0ms) PRAGMA index_list("habtm_name_tests")
6400
+  (0.0ms) PRAGMA index_list("habtm_name_tests_tasks")
6401
+  (0.0ms) PRAGMA index_list("hjoin_tests")
6402
+  (0.0ms) PRAGMA index_list("hjoin_tests_tasks")
6403
+  (0.0ms) PRAGMA index_list("hmany_fk_tests")
6404
+  (0.0ms) PRAGMA index_list("hmanythrough_joins")
6405
+  (0.0ms) PRAGMA index_list("hmanythrough_tests")
6406
+  (0.0ms) PRAGMA index_list("hone_as_tests")
6407
+  (0.0ms) PRAGMA index_list("hone_tests")
6408
+  (0.0ms) PRAGMA index_list("hook_tests")
6409
+  (0.0ms) PRAGMA index_list("moderations")
6410
+  (0.0ms) PRAGMA index_list("photo_holders")
6411
+  (0.0ms) PRAGMA index_list("photos")
6412
+  (0.0ms) PRAGMA index_list("subtasks")
6413
+  (0.0ms) PRAGMA index_list("task_alls")
6414
+  (0.0ms) PRAGMA index_list("task_photos")
6415
+  (0.0ms) PRAGMA index_list("tasks")
6416
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6417
+  (0.1ms) select sqlite_version(*)
6418
+  (2.9ms) CREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6419
+  (1.3ms) CREATE TABLE "habtm_name_tests_tasks" ("task_id" integer, "habtm_name_test_id" integer)
6420
+  (1.5ms) CREATE TABLE "hjoin_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6421
+  (1.5ms) CREATE TABLE "hjoin_tests_tasks" ("task_id" integer, "hjoin_test_id" integer)
6422
+  (1.6ms) CREATE TABLE "hmany_fk_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6423
+  (2.0ms) 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
+  (1.5ms) CREATE TABLE "hmanythrough_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
6425
+  (1.5ms) 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
+  (1.8ms) CREATE TABLE "hone_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "created_at" datetime, "updated_at" datetime, "title" varchar(255)) 
6427
+  (1.4ms) CREATE TABLE "hook_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "foo" varchar(255), "created_at" datetime, "updated_at" datetime)
6428
+  (1.7ms) CREATE 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) 
6429
+  (1.8ms) CREATE TABLE "photo_holders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime)
6430
+  (2.2ms) CREATE TABLE "photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "created_at" datetime, "updated_at" datetime, "photo_holder_id" integer) 
6431
+  (1.7ms) 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
+  (2.2ms) CREATE TABLE "task_alls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "value" varchar(255), "created_at" datetime, "updated_at" datetime) 
6433
+  (2.5ms) CREATE TABLE "task_photos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "photo" varchar(255), "task_id" integer, "created_at" datetime, "updated_at" datetime)
6434
+  (2.0ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "desc" varchar(255), "created_at" datetime, "updated_at" datetime) 
6435
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6436
+  (0.0ms) PRAGMA index_list("schema_migrations")
6437
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6438
+  (0.1ms) SELECT version FROM "schema_migrations"
6439
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018180207')
6440
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013205')
6441
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013228')
6442
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20110901013618')
6443
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025410')
6444
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20110908025606')
6445
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003205633')
6446
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111003234101')
6447
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111004153147')
6448
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111004164509')
6449
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111008195728')
6450
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20111008195809')
6451
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009193145')
6452
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009201729')
6453
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205517')
6454
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20111009205545')
6455
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018172409')
6456
+  (2.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20111018174319')
@@ -108972,3 +108972,3197 @@ SQLite3::SQLException: no such column: hone_tests.hasone_id: SELECT "hone_tests
108972
108972
  Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
108973
108973
  Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
108974
108974
  Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
108975
+  (0.1ms) SAVEPOINT active_record_1
108976
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
108978
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
108979
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
108980
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
108981
+  (0.0ms) SAVEPOINT active_record_1
108982
+ SQL (0.4ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
108984
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
108986
+  (0.0ms) SAVEPOINT active_record_1
108987
+  (0.0ms) RELEASE SAVEPOINT active_record_1
108988
+  (0.0ms) SAVEPOINT active_record_1
108989
+ SQL (0.3ms) 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]]
108990
+  (0.1ms) INSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)
108991
+  (0.1ms) RELEASE SAVEPOINT active_record_1
108992
+  (0.0ms) SAVEPOINT active_record_1
108993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
108994
+  (0.0ms) SAVEPOINT active_record_1
108995
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
108996
+  (0.1ms) RELEASE SAVEPOINT active_record_1
108997
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
108998
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109000
+ HjoinTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
109002
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109004
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109005
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109006
+  (0.0ms) SAVEPOINT active_record_1
109007
+ SQL (0.3ms) 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]]
109008
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109009
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109010
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109011
+  (0.0ms) SAVEPOINT active_record_1
109012
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109014
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109015
+  (0.0ms) SAVEPOINT active_record_1
109016
+ SQL (1.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109018
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
109019
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109020
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109021
+  (0.1ms) SAVEPOINT active_record_1
109022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109023
+  (0.0ms) SAVEPOINT active_record_1
109024
+ SQL (0.3ms) 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
+  (0.1ms) INSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)
109026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109027
+  (0.0ms) SAVEPOINT active_record_1
109028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109029
+  (0.0ms) SAVEPOINT active_record_1
109030
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109032
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
109033
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109034
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109036
+ HjoinTest Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
109038
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109040
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109041
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109042
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109043
+  (0.0ms) SAVEPOINT active_record_1
109044
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109046
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109048
+  (0.1ms) SAVEPOINT active_record_1
109049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109050
+  (0.0ms) SAVEPOINT active_record_1
109051
+ SQL (0.3ms) 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]]
109052
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109054
+  (0.0ms) SAVEPOINT active_record_1
109055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109056
+  (0.0ms) SAVEPOINT active_record_1
109057
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109059
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109060
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109062
+ HmanythroughTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
109064
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109066
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109067
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109068
+  (0.0ms) SAVEPOINT active_record_1
109069
+ SQL (0.3ms) 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]]
109070
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109071
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109073
+  (0.0ms) SAVEPOINT active_record_1
109074
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109076
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109077
+  (0.0ms) SAVEPOINT active_record_1
109078
+ SQL (1.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109080
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109081
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109082
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109083
+  (0.0ms) SAVEPOINT active_record_1
109084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109085
+  (0.0ms) SAVEPOINT active_record_1
109086
+ SQL (0.3ms) 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
+ SQL (0.2ms) 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]]
109088
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109089
+  (0.0ms) SAVEPOINT active_record_1
109090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109091
+  (0.0ms) SAVEPOINT active_record_1
109092
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109093
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109094
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109095
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109096
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109098
+ HmanythroughTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
109100
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109102
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109103
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109104
+  (0.0ms) SAVEPOINT active_record_1
109105
+ SQL (0.4ms) 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]]
109106
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109107
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109109
+  (0.0ms) SAVEPOINT active_record_1
109110
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109111
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109112
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109113
+  (0.0ms) SAVEPOINT active_record_1
109114
+ SQL (1.9ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109116
+  (0.0ms) SAVEPOINT active_record_1
109117
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109118
+ HoneAsTest Load (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109120
+  (0.0ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109121
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109122
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109123
+  (0.1ms) SAVEPOINT active_record_1
109124
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109126
+  (0.0ms) SAVEPOINT active_record_1
109127
+ SQL (0.2ms) 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", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
109128
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109129
+  (0.0ms) SAVEPOINT active_record_1
109130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109131
+  (0.0ms) SAVEPOINT active_record_1
109132
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109133
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109134
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109135
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109136
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109138
+ HmanythroughTest Load (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109140
+ HmanythroughTest Load (0.1ms) 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
+ HmanythroughJoin Load (0.1ms) SELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1
109142
+  (0.0ms) SAVEPOINT active_record_1
109143
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109145
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests" 
109146
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109147
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109148
+  (0.0ms) SAVEPOINT active_record_1
109149
+ SQL (0.3ms) 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]]
109150
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109151
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109152
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109153
+  (0.0ms) SAVEPOINT active_record_1
109154
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109156
+  (0.0ms) SAVEPOINT active_record_1
109157
+ SQL (0.2ms) 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", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:46:28 UTC +00:00]]
109158
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109159
+  (0.0ms) SAVEPOINT active_record_1
109160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109161
+  (0.0ms) SAVEPOINT active_record_1
109162
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109164
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109165
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109166
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109168
+ HmanythroughTest Load (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109170
+ HmanythroughTest Load (0.1ms) 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
+ HmanythroughJoin Load (0.1ms) SELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1
109172
+  (0.1ms) SAVEPOINT active_record_1
109173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109174
+  (0.0ms) SAVEPOINT active_record_1
109175
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109177
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
109178
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109179
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109180
+  (0.0ms) SAVEPOINT active_record_1
109181
+ SQL (0.3ms) 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]]
109182
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109183
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109184
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109185
+  (0.0ms) SAVEPOINT active_record_1
109186
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109188
+  (0.0ms) SAVEPOINT active_record_1
109189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109190
+  (0.0ms) SAVEPOINT active_record_1
109191
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109192
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109193
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
109194
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109195
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109196
+  (0.0ms) SAVEPOINT active_record_1
109197
+ SQL (0.6ms) 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]]
109198
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109199
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109200
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109201
+  (0.1ms) SAVEPOINT active_record_1
109202
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109204
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109206
+  (0.0ms) SAVEPOINT active_record_1
109207
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109209
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109210
+  (0.1ms) SAVEPOINT active_record_1
109211
+ SQL (1.0ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109213
+  (0.0ms) SAVEPOINT active_record_1
109214
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109215
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109217
+  (0.0ms) SELECT COUNT(*) FROM "hone_as_tests" 
109218
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109219
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109220
+  (0.0ms) SAVEPOINT active_record_1
109221
+ SQL (0.3ms) 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]]
109222
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109223
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109224
+  (0.0ms) SAVEPOINT active_record_1
109225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109226
+  (0.0ms) SAVEPOINT active_record_1
109227
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109228
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109229
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
109230
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109231
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109232
+  (0.0ms) SAVEPOINT active_record_1
109233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109234
+  (0.0ms) SAVEPOINT active_record_1
109235
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109237
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
109238
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
109239
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109240
+  (0.0ms) SAVEPOINT active_record_1
109241
+ SQL (0.3ms) 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]]
109242
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109243
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109245
+  (0.0ms) SAVEPOINT active_record_1
109246
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109248
+  (0.0ms) SAVEPOINT active_record_1
109249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109250
+  (0.0ms) SAVEPOINT active_record_1
109251
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109252
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109253
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
109254
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109255
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109256
+  (0.0ms) SAVEPOINT active_record_1
109257
+ SQL (0.7ms) 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]]
109258
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109259
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109260
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109261
+  (0.1ms) SAVEPOINT active_record_1
109262
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109264
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109266
+  (0.0ms) SAVEPOINT active_record_1
109267
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109268
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109269
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109270
+  (0.1ms) SAVEPOINT active_record_1
109271
+ SQL (1.0ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109273
+  (0.0ms) SAVEPOINT active_record_1
109274
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109275
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109277
+  (0.0ms) SELECT COUNT(*) FROM "hone_tests" 
109278
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109279
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109280
+  (0.0ms) SAVEPOINT active_record_1
109281
+ SQL (0.3ms) INSERT INTO "hone_tests" ("created_at", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109283
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109284
+  (0.0ms) SAVEPOINT active_record_1
109285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109286
+  (0.0ms) SAVEPOINT active_record_1
109287
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109289
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
109290
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109291
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109292
+  (0.1ms) SAVEPOINT active_record_1
109293
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109295
+ Moderation Load (0.2ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109296
+  (0.0ms) SAVEPOINT active_record_1
109297
+ SQL (0.6ms) 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: \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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109299
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109300
+  (0.0ms) SAVEPOINT active_record_1
109301
+ SQL (0.3ms) INSERT INTO "hook_tests" ("created_at", "foo", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109303
+  (0.0ms) SAVEPOINT active_record_1
109304
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109306
+ HookTest Load (0.1ms) SELECT "hook_tests".* FROM "hook_tests" LIMIT 1
109307
+  (0.0ms) SAVEPOINT active_record_1
109308
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109310
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109311
+  (0.0ms) SAVEPOINT active_record_1
109312
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109314
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109315
+  (0.1ms) SAVEPOINT active_record_1
109316
+ SQL (0.6ms) 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
+ SQL (0.3ms) 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-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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109319
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
109320
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109321
+  (0.1ms) SAVEPOINT active_record_1
109322
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109324
+  (0.0ms) SAVEPOINT active_record_1
109325
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109327
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
109328
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
109329
+  (0.1ms) SAVEPOINT active_record_1
109330
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109332
+  (0.1ms) SELECT COUNT(*) FROM "photos"
109333
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109334
+  (0.1ms) SAVEPOINT active_record_1
109335
+ SQL (0.3ms) 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", nil], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109337
+  (0.0ms) SAVEPOINT active_record_1
109338
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109340
+  (0.1ms) SELECT COUNT(*) FROM "photos"
109341
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
109342
+  (0.1ms) SAVEPOINT active_record_1
109343
+ SQL (0.6ms) 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-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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109345
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
109346
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109347
+  (0.1ms) SAVEPOINT active_record_1
109348
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109350
+  (0.1ms) SELECT COUNT(*) FROM "photos"
109351
+  (0.0ms) SAVEPOINT active_record_1
109352
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109354
+  (0.1ms) SELECT COUNT(*) FROM "photos"
109355
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109356
+  (0.0ms) SAVEPOINT active_record_1
109357
+ SQL (0.3ms) 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", nil], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109358
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109359
+  (0.0ms) SAVEPOINT active_record_1
109360
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109361
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109362
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
109363
+  (0.1ms) SAVEPOINT active_record_1
109364
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
109365
+  (0.1ms) UPDATE "photos" SET "photo" = NULL, "updated_at" = '2011-10-18 17:46:29.218599' WHERE "photos"."id" = 1
109366
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109368
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
109369
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
109370
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109371
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
109372
+  (0.1ms) SAVEPOINT active_record_1
109373
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
109374
+  (0.1ms) UPDATE "photos" SET "photo" = 'test.jpg', "updated_at" = '2011-10-18 17:46:29.233352' WHERE "photos"."id" = 1
109375
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109376
+  (0.0ms) SAVEPOINT active_record_1
109377
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109379
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
109380
+  (0.1ms) SAVEPOINT active_record_1
109381
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109383
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
109384
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109385
+  (0.1ms) SELECT COUNT(*) FROM "task_photos" 
109386
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109387
+  (0.1ms) SAVEPOINT active_record_1
109388
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109390
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109392
+  (0.1ms) SAVEPOINT active_record_1
109393
+ SQL (0.4ms) INSERT INTO "task_photos" ("created_at", "photo", "task_id", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109395
+  (0.0ms) SAVEPOINT active_record_1
109396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109397
+  (0.0ms) SAVEPOINT active_record_1
109398
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109400
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109401
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109402
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109403
+ TaskPhoto Load (0.1ms) SELECT "task_photos".* FROM "task_photos" WHERE "task_photos"."task_id" = 1 LIMIT 1
109404
+  (0.0ms) SAVEPOINT active_record_1
109405
+ SQL (0.6ms) 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]]
109406
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109407
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109408
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
109409
+  (0.0ms) SAVEPOINT active_record_1
109410
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109412
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109413
+  (0.0ms) SAVEPOINT active_record_1
109414
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109416
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109418
+  (0.0ms) SAVEPOINT active_record_1
109419
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109421
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
109422
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109423
+ Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109424
+  (0.0ms) SAVEPOINT active_record_1
109425
+ SQL (0.6ms) 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]]
109426
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109427
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109428
+  (0.0ms) SAVEPOINT active_record_1
109429
+ SQL (0.3ms) 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]]
109430
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109431
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109432
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109433
+  (0.0ms) SAVEPOINT active_record_1
109434
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109435
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109436
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109437
+  (0.0ms) SAVEPOINT active_record_1
109438
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109440
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109442
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109443
+  (0.0ms) SAVEPOINT active_record_1
109444
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109446
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109448
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109449
+  (0.0ms) SAVEPOINT active_record_1
109450
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109452
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109454
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109455
+  (0.0ms) SAVEPOINT active_record_1
109456
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109458
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109460
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
109461
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109462
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109463
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109464
+  (0.0ms) SAVEPOINT active_record_1
109465
+  (0.1ms) UPDATE "tasks" SET "updated_at" = '2011-10-18 17:46:29.426605', "title" = 'Hollywood Hills' WHERE "tasks"."id" = 1
109466
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109467
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109468
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109469
+  (0.0ms) SAVEPOINT active_record_1
109470
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 5]]
109471
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109472
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109473
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109474
+  (0.0ms) SAVEPOINT active_record_1
109475
+ SQL (0.6ms) 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]]
109476
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109477
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109478
+  (0.0ms) SAVEPOINT active_record_1
109479
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109480
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109481
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
109482
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
109483
+  (0.0ms) SAVEPOINT active_record_1
109484
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109486
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109487
+  (0.0ms) SAVEPOINT active_record_1
109488
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109490
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109492
+  (0.0ms) SAVEPOINT active_record_1
109493
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109494
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109495
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109496
+  (0.0ms) SAVEPOINT active_record_1
109497
+ SQL (0.3ms) 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]]
109498
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109499
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109501
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109502
+  (0.0ms) SAVEPOINT active_record_1
109503
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109505
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109506
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109507
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
109508
+  (0.1ms) SAVEPOINT active_record_1
109509
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109511
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109512
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
109513
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109514
+  (0.0ms) SAVEPOINT active_record_1
109515
+ SQL (0.3ms) 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]]
109516
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109517
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109518
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109519
+  (0.1ms) SAVEPOINT active_record_1
109520
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109522
+  (0.0ms) SAVEPOINT active_record_1
109523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109524
+  (0.0ms) SAVEPOINT active_record_1
109525
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109526
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109527
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
109528
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109529
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109530
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
109531
+  (0.0ms) SAVEPOINT active_record_1
109532
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109534
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
109535
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109536
+  (0.0ms) SAVEPOINT active_record_1
109537
+ SQL (0.3ms) INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109539
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109541
+  (0.0ms) SAVEPOINT active_record_1
109542
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109543
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109544
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
109545
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109546
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109547
+  (0.0ms) SAVEPOINT active_record_1
109548
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109550
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109551
+  (0.0ms) SAVEPOINT active_record_1
109552
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109554
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109556
+  (0.0ms) SAVEPOINT active_record_1
109557
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109558
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109559
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109560
+  (0.0ms) SAVEPOINT active_record_1
109561
+ SQL (0.4ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109563
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109565
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
109566
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109567
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109568
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109569
+  (0.0ms) SAVEPOINT active_record_1
109570
+  (0.1ms) UPDATE "tasks" SET "desc" = 'Hollywood Hills', "updated_at" = '2011-10-18 17:46:29.621109' WHERE "tasks"."id" = 1
109571
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109572
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109574
+  (0.0ms) SAVEPOINT active_record_1
109575
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109577
+ Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109578
+  (0.0ms) SAVEPOINT active_record_1
109579
+ SQL (0.6ms) 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", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109581
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
109582
+  (0.0ms) SAVEPOINT active_record_1
109583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109584
+  (0.0ms) SAVEPOINT active_record_1
109585
+ SQL (0.3ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109587
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109588
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
109589
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1
109590
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109591
+  (0.0ms) SAVEPOINT active_record_1
109592
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109594
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109596
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
109597
+  (0.0ms) SAVEPOINT active_record_1
109598
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:46:29.648411' WHERE "subtasks"."id" = 1
109599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109600
+  (0.0ms) SAVEPOINT active_record_1
109601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109602
+  (0.0ms) SAVEPOINT active_record_1
109603
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109604
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109605
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
109606
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109607
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109608
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109609
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
109610
+  (0.1ms) SAVEPOINT active_record_1
109611
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109613
+  (0.1ms) SELECT COUNT(*) FROM "task_alls" 
109614
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
109615
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109616
+  (0.0ms) SAVEPOINT active_record_1
109617
+ SQL (0.3ms) INSERT INTO "task_alls" ("created_at", "title", "updated_at", "value") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109619
+  (0.0ms) SAVEPOINT active_record_1
109620
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109622
+  (0.0ms) SAVEPOINT active_record_1
109623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109624
+  (0.0ms) SAVEPOINT active_record_1
109625
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109626
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109627
+  (0.1ms) SELECT COUNT(*) FROM "task_alls" 
109628
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
109629
+ TaskAll Load (0.1ms) SELECT "task_alls".* FROM "task_alls" LIMIT 1
109630
+ TaskAll Load (0.1ms) SELECT "task_alls".* FROM "task_alls" LIMIT 1
109631
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_all_id" = 1 LIMIT 1
109632
+  (0.0ms) SAVEPOINT active_record_1
109633
+ SQL (0.6ms) 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", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109634
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109635
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
109636
+  (0.0ms) SAVEPOINT active_record_1
109637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109638
+  (0.0ms) SAVEPOINT active_record_1
109639
+ SQL (0.3ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109641
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109642
+ SQL (0.1ms) DELETE FROM "subtasks"
109643
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
109644
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109645
+  (0.0ms) SAVEPOINT active_record_1
109646
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109648
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109650
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
109651
+  (0.0ms) SAVEPOINT active_record_1
109652
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109654
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109655
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109656
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
109657
+  (0.0ms) SAVEPOINT active_record_1
109658
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109660
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109661
+  (0.0ms) SAVEPOINT active_record_1
109662
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109664
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109666
+  (0.0ms) SAVEPOINT active_record_1
109667
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109668
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109669
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109670
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109671
+  (0.0ms) SAVEPOINT active_record_1
109672
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109674
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109675
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109676
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109677
+  (0.0ms) SAVEPOINT active_record_1
109678
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task'
109679
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109680
+ HjoinTest Load (0.1ms) 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
+ SQL (0.1ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]]
109682
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109683
+  (0.0ms) SAVEPOINT active_record_1
109684
+ SQL (0.0ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109686
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
109687
+  (0.0ms) SAVEPOINT active_record_1
109688
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109690
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109691
+  (0.0ms) SAVEPOINT active_record_1
109692
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109694
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109696
+  (0.0ms) SAVEPOINT active_record_1
109697
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109699
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109700
+  (0.0ms) SAVEPOINT active_record_1
109701
+ SQL (1.0ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109703
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109704
+  (0.0ms) SAVEPOINT active_record_1
109705
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109706
+ HoneAsTest Load (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109708
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109709
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
109710
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109711
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109712
+  (0.1ms) SAVEPOINT active_record_1
109713
+ SQL (0.3ms) 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]]
109714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109715
+  (0.0ms) SAVEPOINT active_record_1
109716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109717
+  (0.0ms) SAVEPOINT active_record_1
109718
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109719
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109720
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109721
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
109722
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109723
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
109724
+  (0.0ms) SAVEPOINT active_record_1
109725
+ SQL (0.7ms) 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", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109727
+  (0.1ms) SAVEPOINT active_record_1
109728
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109730
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109731
+  (0.0ms) SAVEPOINT active_record_1
109732
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109734
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109736
+  (0.0ms) SAVEPOINT active_record_1
109737
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109739
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109740
+  (0.0ms) SAVEPOINT active_record_1
109741
+ SQL (0.6ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109743
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109744
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
109745
+  (0.0ms) SAVEPOINT active_record_1
109746
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109747
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109749
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109750
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109751
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109752
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
109753
+  (0.0ms) SAVEPOINT active_record_1
109754
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:46:29.903901' WHERE "subtasks"."id" = 1
109755
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109756
+  (0.0ms) SAVEPOINT active_record_1
109757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109758
+  (0.0ms) SAVEPOINT active_record_1
109759
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109761
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109762
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
109763
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109764
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
109765
+  (0.0ms) SAVEPOINT active_record_1
109766
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109768
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109769
+  (0.0ms) SAVEPOINT active_record_1
109770
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109772
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109774
+  (0.0ms) SAVEPOINT active_record_1
109775
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109777
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109778
+  (0.0ms) SAVEPOINT active_record_1
109779
+ SQL (1.2ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109781
+  (0.0ms) SAVEPOINT active_record_1
109782
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109783
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109785
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
109786
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109787
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109788
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109789
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109790
+  (0.0ms) SAVEPOINT active_record_1
109791
+ SQL (0.3ms) 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", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109792
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109793
+  (0.0ms) SAVEPOINT active_record_1
109794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109795
+  (0.0ms) SAVEPOINT active_record_1
109796
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109797
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109798
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
109799
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
109800
+  (0.0ms) SAVEPOINT active_record_1
109801
+ SQL (0.7ms) 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]]
109802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109803
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109804
+  (0.1ms) SAVEPOINT active_record_1
109805
+ SQL (0.3ms) 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]]
109806
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109807
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109808
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109809
+  (0.0ms) SAVEPOINT active_record_1
109810
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109812
+  (0.0ms) SAVEPOINT active_record_1
109813
+ SQL (0.3ms) 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", nil], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:46:29 UTC +00:00]]
109814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109815
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
109816
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109817
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
109818
+  (0.0ms) SAVEPOINT active_record_1
109819
+ SQL (0.6ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109821
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109822
+  (0.2ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
109823
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109824
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109825
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
109826
+  (0.0ms) SAVEPOINT active_record_1
109827
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:46:29.971431' WHERE "subtasks"."id" = 1
109828
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109829
+  (0.0ms) SAVEPOINT active_record_1
109830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109831
+  (0.0ms) SAVEPOINT active_record_1
109832
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109833
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109834
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109835
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
109836
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
109837
+  (0.1ms) SAVEPOINT active_record_1
109838
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109840
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
109841
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109842
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109843
+  (0.0ms) SAVEPOINT active_record_1
109844
+ SQL (0.4ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109846
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109848
+  (0.0ms) SAVEPOINT active_record_1
109849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109850
+  (0.0ms) SAVEPOINT active_record_1
109851
+ SQL (0.3ms) INSERT INTO "hjoin_tests" ("created_at", "title", "updated_at") VALUES (?, ?, ?) [["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
+  (0.1ms) INSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)
109853
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109854
+  (0.0ms) SAVEPOINT active_record_1
109855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109856
+  (0.0ms) SAVEPOINT active_record_1
109857
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109858
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109859
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109860
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109862
+ HjoinTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
109864
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109866
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109867
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109868
+  (0.0ms) SAVEPOINT active_record_1
109869
+ SQL (0.4ms) 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]]
109870
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109871
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109872
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109873
+  (0.0ms) SAVEPOINT active_record_1
109874
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109875
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109876
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109877
+  (0.0ms) SAVEPOINT active_record_1
109878
+ SQL (1.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109880
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
109881
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109882
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109883
+  (0.0ms) SAVEPOINT active_record_1
109884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109885
+  (0.0ms) SAVEPOINT active_record_1
109886
+ SQL (0.3ms) 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
+  (0.1ms) INSERT INTO "hjoin_tests_tasks" ("task_id", "hjoin_test_id") VALUES (1, 1)
109888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109889
+  (0.0ms) SAVEPOINT active_record_1
109890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109891
+  (0.0ms) SAVEPOINT active_record_1
109892
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109893
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109894
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
109895
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109896
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109898
+ HjoinTest Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
109900
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109902
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
109903
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
109904
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109905
+  (0.0ms) SAVEPOINT active_record_1
109906
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109908
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109910
+  (0.0ms) SAVEPOINT active_record_1
109911
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109913
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109914
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
109915
+  (0.0ms) SAVEPOINT active_record_1
109916
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109918
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109919
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109920
+  (0.0ms) SAVEPOINT active_record_1
109921
+ SQL (0.3ms) 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]]
109922
+ HoneTest Load (0.2ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109923
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109924
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109925
+  (0.0ms) SAVEPOINT active_record_1
109926
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109927
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109928
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109929
+  (0.0ms) SAVEPOINT active_record_1
109930
+ SQL (0.9ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109932
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
109933
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109934
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109935
+  (0.1ms) SAVEPOINT active_record_1
109936
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109938
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109939
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
109940
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109941
+  (0.0ms) SAVEPOINT active_record_1
109942
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109944
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109946
+  (0.1ms) SAVEPOINT active_record_1
109947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109948
+  (0.0ms) SAVEPOINT active_record_1
109949
+ SQL (0.3ms) 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]]
109950
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109952
+  (0.0ms) SAVEPOINT active_record_1
109953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109954
+  (0.0ms) SAVEPOINT active_record_1
109955
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109956
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109957
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109958
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109960
+ HmanythroughTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
109962
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109964
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
109965
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109966
+  (0.1ms) SAVEPOINT active_record_1
109967
+ SQL (0.3ms) 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]]
109968
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
109969
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
109970
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109971
+  (0.0ms) SAVEPOINT active_record_1
109972
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
109973
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109974
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109975
+  (0.0ms) SAVEPOINT active_record_1
109976
+ SQL (1.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109978
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109979
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
109980
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
109981
+  (0.0ms) SAVEPOINT active_record_1
109982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109983
+  (0.0ms) SAVEPOINT active_record_1
109984
+ SQL (0.3ms) 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
+ SQL (0.3ms) 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]]
109986
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109987
+  (0.0ms) SAVEPOINT active_record_1
109988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
109989
+  (0.0ms) SAVEPOINT active_record_1
109990
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
109991
+  (0.1ms) RELEASE SAVEPOINT active_record_1
109992
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
109993
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109994
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
109996
+ HmanythroughTest Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
109998
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110000
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
110001
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110002
+  (0.0ms) SAVEPOINT active_record_1
110003
+ SQL (0.3ms) 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]]
110004
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110005
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110007
+  (0.0ms) SAVEPOINT active_record_1
110008
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110009
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110010
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110011
+  (0.1ms) SAVEPOINT active_record_1
110012
+ SQL (1.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110014
+  (0.0ms) SAVEPOINT active_record_1
110015
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110016
+ HoneAsTest Load (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110018
+  (0.0ms) SELECT COUNT(*) FROM "hmanythrough_tests"
110019
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110020
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110021
+  (0.0ms) SAVEPOINT active_record_1
110022
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110024
+  (0.0ms) SAVEPOINT active_record_1
110025
+ SQL (0.3ms) 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", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
110026
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110027
+  (0.0ms) SAVEPOINT active_record_1
110028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110029
+  (0.0ms) SAVEPOINT active_record_1
110030
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110031
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110032
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
110033
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110034
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110036
+ HmanythroughTest Load (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110038
+ HmanythroughTest Load (0.1ms) 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
+ HmanythroughJoin Load (0.1ms) SELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1
110040
+  (0.0ms) SAVEPOINT active_record_1
110041
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110043
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests" 
110044
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
110045
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110046
+  (0.0ms) SAVEPOINT active_record_1
110047
+ SQL (0.3ms) 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]]
110048
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110049
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110050
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110051
+  (0.0ms) SAVEPOINT active_record_1
110052
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110054
+  (0.0ms) SAVEPOINT active_record_1
110055
+ SQL (0.2ms) 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", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
110056
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110057
+  (0.0ms) SAVEPOINT active_record_1
110058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110059
+  (0.0ms) SAVEPOINT active_record_1
110060
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110062
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
110063
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110064
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110066
+ HmanythroughTest Load (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110068
+ HmanythroughTest Load (0.1ms) 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
+ HmanythroughJoin Load (0.1ms) SELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1
110070
+  (0.1ms) SAVEPOINT active_record_1
110071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110072
+  (0.0ms) SAVEPOINT active_record_1
110073
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110075
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
110076
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
110077
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110078
+  (0.0ms) SAVEPOINT active_record_1
110079
+ SQL (0.3ms) 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]]
110080
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110081
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110082
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110083
+  (0.0ms) SAVEPOINT active_record_1
110084
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110086
+  (0.0ms) SAVEPOINT active_record_1
110087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110088
+  (0.0ms) SAVEPOINT active_record_1
110089
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110090
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110091
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
110092
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110093
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110094
+  (0.0ms) SAVEPOINT active_record_1
110095
+ SQL (0.7ms) 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]]
110096
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110097
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110098
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110099
+  (0.0ms) SAVEPOINT active_record_1
110100
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110102
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110104
+  (0.0ms) SAVEPOINT active_record_1
110105
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110107
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110108
+  (0.1ms) SAVEPOINT active_record_1
110109
+ SQL (1.0ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110111
+  (0.0ms) SAVEPOINT active_record_1
110112
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110113
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110115
+  (0.0ms) SELECT COUNT(*) FROM "hone_as_tests" 
110116
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110117
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110118
+  (0.0ms) SAVEPOINT active_record_1
110119
+ SQL (0.3ms) 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]]
110120
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110121
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110122
+  (0.0ms) SAVEPOINT active_record_1
110123
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110124
+  (0.0ms) SAVEPOINT active_record_1
110125
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110126
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110127
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
110128
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110129
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110130
+  (0.1ms) SAVEPOINT active_record_1
110131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110132
+  (0.0ms) SAVEPOINT active_record_1
110133
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110135
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
110136
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
110137
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110138
+  (0.0ms) SAVEPOINT active_record_1
110139
+ SQL (0.3ms) 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]]
110140
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110141
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110142
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110143
+  (0.1ms) SAVEPOINT active_record_1
110144
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110146
+  (0.1ms) SAVEPOINT active_record_1
110147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110148
+  (0.0ms) SAVEPOINT active_record_1
110149
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110150
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110151
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
110152
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110153
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110154
+  (0.0ms) SAVEPOINT active_record_1
110155
+ SQL (0.6ms) 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]]
110156
+  (0.2ms) RELEASE SAVEPOINT active_record_1
110157
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110158
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110159
+  (0.1ms) SAVEPOINT active_record_1
110160
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110162
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110164
+  (0.0ms) SAVEPOINT active_record_1
110165
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110167
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110168
+  (0.1ms) SAVEPOINT active_record_1
110169
+ SQL (1.0ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110171
+  (0.0ms) SAVEPOINT active_record_1
110172
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110173
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110175
+  (0.0ms) SELECT COUNT(*) FROM "hone_tests" 
110176
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110177
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110178
+  (0.0ms) SAVEPOINT active_record_1
110179
+ SQL (0.3ms) 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]]
110180
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110181
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110182
+  (0.0ms) SAVEPOINT active_record_1
110183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110184
+  (0.0ms) SAVEPOINT active_record_1
110185
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110187
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
110188
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110189
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110190
+  (0.1ms) SAVEPOINT active_record_1
110191
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110193
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110194
+  (0.0ms) SAVEPOINT active_record_1
110195
+ SQL (0.7ms) 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: \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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110197
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110198
+  (0.0ms) SAVEPOINT active_record_1
110199
+ SQL (0.4ms) INSERT INTO "hook_tests" ("created_at", "foo", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110201
+  (0.0ms) SAVEPOINT active_record_1
110202
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110204
+ HookTest Load (0.2ms) SELECT "hook_tests".* FROM "hook_tests" LIMIT 1
110205
+  (0.0ms) SAVEPOINT active_record_1
110206
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110208
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110209
+  (0.0ms) SAVEPOINT active_record_1
110210
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110212
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110213
+  (0.1ms) SAVEPOINT active_record_1
110214
+ SQL (0.6ms) 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
+ SQL (0.3ms) 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-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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110217
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
110218
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110219
+  (0.1ms) SAVEPOINT active_record_1
110220
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110222
+  (0.0ms) SAVEPOINT active_record_1
110223
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110224
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110225
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
110226
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
110227
+  (0.1ms) SAVEPOINT active_record_1
110228
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110230
+  (0.1ms) SELECT COUNT(*) FROM "photos"
110231
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110232
+  (0.1ms) SAVEPOINT active_record_1
110233
+ SQL (0.3ms) 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", nil], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
110234
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110235
+  (0.0ms) SAVEPOINT active_record_1
110236
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110238
+  (0.1ms) SELECT COUNT(*) FROM "photos"
110239
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
110240
+  (0.1ms) SAVEPOINT active_record_1
110241
+ SQL (0.6ms) 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-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
+  (0.2ms) RELEASE SAVEPOINT active_record_1
110243
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
110244
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110245
+  (0.0ms) SAVEPOINT active_record_1
110246
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110248
+  (0.1ms) SELECT COUNT(*) FROM "photos"
110249
+  (0.0ms) SAVEPOINT active_record_1
110250
+ SQL (0.8ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110252
+  (0.1ms) SELECT COUNT(*) FROM "photos"
110253
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110254
+  (0.0ms) SAVEPOINT active_record_1
110255
+ SQL (0.3ms) 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", nil], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 17:50:14 UTC +00:00]]
110256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110257
+  (0.0ms) SAVEPOINT active_record_1
110258
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110260
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
110261
+  (0.1ms) SAVEPOINT active_record_1
110262
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
110263
+  (0.1ms) UPDATE "photos" SET "photo" = NULL, "updated_at" = '2011-10-18 17:50:14.658680' WHERE "photos"."id" = 1
110264
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110266
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
110267
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
110268
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110269
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
110270
+  (0.1ms) SAVEPOINT active_record_1
110271
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
110272
+  (0.1ms) UPDATE "photos" SET "photo" = 'test.jpg', "updated_at" = '2011-10-18 17:50:14.748095' WHERE "photos"."id" = 1
110273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110274
+  (0.0ms) SAVEPOINT active_record_1
110275
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110277
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
110278
+  (0.1ms) SAVEPOINT active_record_1
110279
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110281
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
110282
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
110283
+  (0.1ms) SELECT COUNT(*) FROM "task_photos" 
110284
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110285
+  (0.1ms) SAVEPOINT active_record_1
110286
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110288
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110290
+  (0.1ms) SAVEPOINT active_record_1
110291
+ SQL (0.3ms) INSERT INTO "task_photos" ("created_at", "photo", "task_id", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110293
+  (0.0ms) SAVEPOINT active_record_1
110294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110295
+  (0.0ms) SAVEPOINT active_record_1
110296
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110297
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110298
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
110299
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110300
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110301
+ TaskPhoto Load (0.1ms) SELECT "task_photos".* FROM "task_photos" WHERE "task_photos"."task_id" = 1 LIMIT 1
110302
+  (0.0ms) SAVEPOINT active_record_1
110303
+ SQL (0.6ms) 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]]
110304
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110305
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110306
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
110307
+  (0.1ms) SAVEPOINT active_record_1
110308
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110310
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110311
+  (0.0ms) SAVEPOINT active_record_1
110312
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110314
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110316
+  (0.0ms) SAVEPOINT active_record_1
110317
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110318
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110319
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
110320
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
110321
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110322
+  (0.0ms) SAVEPOINT active_record_1
110323
+ SQL (0.6ms) 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]]
110324
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110325
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110326
+  (0.0ms) SAVEPOINT active_record_1
110327
+ SQL (0.3ms) 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]]
110328
+ HoneTest Load (0.2ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110329
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110331
+  (0.0ms) SAVEPOINT active_record_1
110332
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110334
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110335
+  (0.0ms) SAVEPOINT active_record_1
110336
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110338
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110340
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110341
+  (0.0ms) SAVEPOINT active_record_1
110342
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110344
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110346
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110347
+  (0.0ms) SAVEPOINT active_record_1
110348
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110350
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110352
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110353
+  (0.0ms) SAVEPOINT active_record_1
110354
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110356
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110358
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
110359
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110360
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110361
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110362
+  (0.0ms) SAVEPOINT active_record_1
110363
+  (0.1ms) UPDATE "tasks" SET "title" = 'Hollywood Hills', "updated_at" = '2011-10-18 17:50:14.872011' WHERE "tasks"."id" = 1
110364
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110365
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110367
+  (0.0ms) SAVEPOINT active_record_1
110368
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 5]]
110369
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110370
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110371
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110372
+  (0.0ms) SAVEPOINT active_record_1
110373
+ SQL (0.7ms) 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]]
110374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110375
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110376
+  (0.0ms) SAVEPOINT active_record_1
110377
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110378
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110379
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
110380
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
110381
+  (0.0ms) SAVEPOINT active_record_1
110382
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110384
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110385
+  (0.0ms) SAVEPOINT active_record_1
110386
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110388
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110390
+  (0.0ms) SAVEPOINT active_record_1
110391
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110393
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110394
+  (0.0ms) SAVEPOINT active_record_1
110395
+ SQL (0.3ms) 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]]
110396
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110397
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110399
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110400
+  (0.0ms) SAVEPOINT active_record_1
110401
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110402
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110403
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
110404
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110405
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
110406
+  (0.1ms) SAVEPOINT active_record_1
110407
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110409
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110410
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
110411
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110412
+  (0.1ms) SAVEPOINT active_record_1
110413
+ SQL (0.3ms) 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]]
110414
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110415
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110416
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110417
+  (0.1ms) SAVEPOINT active_record_1
110418
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110420
+  (0.0ms) SAVEPOINT active_record_1
110421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110422
+  (0.0ms) SAVEPOINT active_record_1
110423
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110425
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
110426
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110427
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110428
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
110429
+  (0.0ms) SAVEPOINT active_record_1
110430
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110432
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
110433
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110434
+  (0.0ms) SAVEPOINT active_record_1
110435
+ SQL (0.3ms) INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110437
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110439
+  (0.0ms) SAVEPOINT active_record_1
110440
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110442
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
110443
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110444
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110445
+  (0.0ms) SAVEPOINT active_record_1
110446
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110448
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110449
+  (0.0ms) SAVEPOINT active_record_1
110450
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110452
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110454
+  (0.0ms) SAVEPOINT active_record_1
110455
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110457
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110458
+  (0.0ms) SAVEPOINT active_record_1
110459
+ SQL (0.4ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110461
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110463
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
110464
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110465
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110466
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110467
+  (0.1ms) SAVEPOINT active_record_1
110468
+  (0.1ms) UPDATE "tasks" SET "desc" = 'Hollywood Hills', "updated_at" = '2011-10-18 17:50:15.093765' WHERE "tasks"."id" = 1
110469
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110470
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110472
+  (0.0ms) SAVEPOINT active_record_1
110473
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110475
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110476
+  (0.0ms) SAVEPOINT active_record_1
110477
+ SQL (0.6ms) 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", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
110478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110479
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
110480
+  (0.0ms) SAVEPOINT active_record_1
110481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110482
+  (0.0ms) SAVEPOINT active_record_1
110483
+ SQL (0.3ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110485
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110486
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
110487
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1
110488
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110489
+  (0.0ms) SAVEPOINT active_record_1
110490
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110492
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110494
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
110495
+  (0.0ms) SAVEPOINT active_record_1
110496
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:50:15.120072' WHERE "subtasks"."id" = 1
110497
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110498
+  (0.0ms) SAVEPOINT active_record_1
110499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110500
+  (0.0ms) SAVEPOINT active_record_1
110501
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110502
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110503
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
110504
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110505
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110506
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110507
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
110508
+  (0.1ms) SAVEPOINT active_record_1
110509
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110511
+  (0.1ms) SELECT COUNT(*) FROM "task_alls" 
110512
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
110513
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110514
+  (0.0ms) SAVEPOINT active_record_1
110515
+ SQL (0.3ms) INSERT INTO "task_alls" ("created_at", "title", "updated_at", "value") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110517
+  (0.0ms) SAVEPOINT active_record_1
110518
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110520
+  (0.0ms) SAVEPOINT active_record_1
110521
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110522
+  (0.0ms) SAVEPOINT active_record_1
110523
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110524
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110525
+  (0.1ms) SELECT COUNT(*) FROM "task_alls" 
110526
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
110527
+ TaskAll Load (0.1ms) SELECT "task_alls".* FROM "task_alls" LIMIT 1
110528
+ TaskAll Load (0.1ms) SELECT "task_alls".* FROM "task_alls" LIMIT 1
110529
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_all_id" = 1 LIMIT 1
110530
+  (0.0ms) SAVEPOINT active_record_1
110531
+ SQL (0.6ms) 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", nil], ["title", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
110532
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110533
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
110534
+  (0.3ms) SAVEPOINT active_record_1
110535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110536
+  (0.0ms) SAVEPOINT active_record_1
110537
+ SQL (0.3ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110539
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110540
+ SQL (0.0ms) DELETE FROM "subtasks"
110541
+  (0.0ms) SELECT COUNT(*) FROM "subtasks" 
110542
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110543
+  (0.0ms) SAVEPOINT active_record_1
110544
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110546
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110548
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
110549
+  (0.0ms) SAVEPOINT active_record_1
110550
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110552
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110553
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110554
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
110555
+  (0.0ms) SAVEPOINT active_record_1
110556
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110558
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110559
+  (0.0ms) SAVEPOINT active_record_1
110560
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110562
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110564
+  (0.0ms) SAVEPOINT active_record_1
110565
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110566
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110567
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110568
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110569
+  (0.0ms) SAVEPOINT active_record_1
110570
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110572
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
110573
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110574
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110575
+  (0.0ms) SAVEPOINT active_record_1
110576
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task'
110577
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110578
+ HjoinTest Load (0.1ms) 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
+ SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]]
110580
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110581
+  (0.0ms) SAVEPOINT active_record_1
110582
+ SQL (0.0ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110583
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110584
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
110585
+  (0.0ms) SAVEPOINT active_record_1
110586
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110588
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110589
+  (0.0ms) SAVEPOINT active_record_1
110590
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110592
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110594
+  (0.0ms) SAVEPOINT active_record_1
110595
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110597
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110598
+  (0.0ms) SAVEPOINT active_record_1
110599
+ SQL (1.1ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110601
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110602
+  (0.0ms) SAVEPOINT active_record_1
110603
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110604
+ HoneAsTest Load (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110606
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110607
+  (0.0ms) SELECT COUNT(*) FROM "subtasks" 
110608
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110609
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110610
+  (0.0ms) SAVEPOINT active_record_1
110611
+ SQL (0.3ms) 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]]
110612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110613
+  (0.0ms) SAVEPOINT active_record_1
110614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110615
+  (0.0ms) SAVEPOINT active_record_1
110616
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110617
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110618
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110619
+  (0.0ms) SELECT COUNT(*) FROM "subtasks" 
110620
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110621
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
110622
+  (0.0ms) SAVEPOINT active_record_1
110623
+ SQL (0.6ms) 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", nil], ["title", "Hollywood Hills"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
110624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110625
+  (0.0ms) SAVEPOINT active_record_1
110626
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110628
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110629
+  (0.0ms) SAVEPOINT active_record_1
110630
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110632
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110634
+  (0.0ms) SAVEPOINT active_record_1
110635
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110637
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110638
+  (0.0ms) SAVEPOINT active_record_1
110639
+ SQL (0.8ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110641
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110642
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
110643
+  (0.0ms) SAVEPOINT active_record_1
110644
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110645
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110646
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110647
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110648
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110649
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110650
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
110651
+  (0.0ms) SAVEPOINT active_record_1
110652
+  (0.2ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:50:15.363075' WHERE "subtasks"."id" = 1
110653
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110654
+  (0.0ms) SAVEPOINT active_record_1
110655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110656
+  (0.0ms) SAVEPOINT active_record_1
110657
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110658
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110659
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110660
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
110661
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110662
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
110663
+  (0.0ms) SAVEPOINT active_record_1
110664
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110666
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110667
+  (0.0ms) SAVEPOINT active_record_1
110668
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110670
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110672
+  (0.0ms) SAVEPOINT active_record_1
110673
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110675
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110676
+  (0.0ms) SAVEPOINT active_record_1
110677
+ SQL (1.1ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110679
+  (0.0ms) SAVEPOINT active_record_1
110680
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110681
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110683
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
110684
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110685
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110686
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110687
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110688
+  (0.0ms) SAVEPOINT active_record_1
110689
+ SQL (0.3ms) 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", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
110690
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110691
+  (0.0ms) SAVEPOINT active_record_1
110692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110693
+  (0.0ms) SAVEPOINT active_record_1
110694
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110695
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110696
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
110697
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
110698
+  (0.0ms) SAVEPOINT active_record_1
110699
+ SQL (0.6ms) 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]]
110700
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110701
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110702
+  (0.1ms) SAVEPOINT active_record_1
110703
+ SQL (0.3ms) 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]]
110704
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110705
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110707
+  (0.0ms) SAVEPOINT active_record_1
110708
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110710
+  (0.0ms) SAVEPOINT active_record_1
110711
+ SQL (0.3ms) 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", nil], ["title", "Jo jo"], ["updated_at", Tue, 18 Oct 2011 17:50:15 UTC +00:00]]
110712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110713
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
110714
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110715
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
110716
+  (0.0ms) SAVEPOINT active_record_1
110717
+ SQL (0.6ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110719
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110720
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
110721
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110722
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110723
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
110724
+  (0.0ms) SAVEPOINT active_record_1
110725
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 17:50:15.429543' WHERE "subtasks"."id" = 1
110726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110727
+  (0.0ms) SAVEPOINT active_record_1
110728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110729
+  (0.0ms) SAVEPOINT active_record_1
110730
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
110731
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110732
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110733
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
110734
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
110735
+  (0.1ms) SAVEPOINT active_record_1
110736
+ SQL (4.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110738
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110739
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110740
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110741
+  (0.0ms) SAVEPOINT active_record_1
110742
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110744
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110746
+  (0.0ms) SAVEPOINT active_record_1
110747
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110748
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110749
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110750
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
110751
+  (0.0ms) SAVEPOINT active_record_1
110752
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110754
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
110755
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110756
+  (0.1ms) SAVEPOINT active_record_1
110757
+ SQL (0.3ms) 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]]
110758
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110759
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
110760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110761
+  (0.0ms) SAVEPOINT active_record_1
110762
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110764
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110765
+  (0.0ms) SAVEPOINT active_record_1
110766
+ SQL (1.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110768
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110769
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110770
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110771
+  (0.1ms) SAVEPOINT active_record_1
110772
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110774
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110775
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110776
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110777
+  (0.0ms) SAVEPOINT active_record_1
110778
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110780
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110782
+  (0.0ms) SAVEPOINT active_record_1
110783
+ SQL (0.6ms) 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:49 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00]]
110784
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110785
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110786
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110787
+  (0.0ms) SAVEPOINT active_record_1
110788
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110790
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110792
+  (0.0ms) SAVEPOINT active_record_1
110793
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110794
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110795
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110796
+  (0.0ms) SAVEPOINT active_record_1
110797
+ SQL (1.0ms) 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:49 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:50:49 UTC +00:00]]
110798
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110799
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110800
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110801
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110802
+  (0.1ms) SAVEPOINT active_record_1
110803
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110805
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110806
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110807
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110808
+  (0.0ms) SAVEPOINT active_record_1
110809
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110811
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110813
+  (0.0ms) SAVEPOINT active_record_1
110814
+ SQL (0.6ms) 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:55:59 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
110815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110816
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110817
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110818
+  (0.0ms) SAVEPOINT active_record_1
110819
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110821
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110823
+  (0.0ms) SAVEPOINT active_record_1
110824
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110825
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110826
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110827
+  (0.0ms) SAVEPOINT active_record_1
110828
+ SQL (1.0ms) 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:55:59 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:55:59 UTC +00:00]]
110829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110830
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110831
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110832
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110833
+  (0.1ms) SAVEPOINT active_record_1
110834
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110836
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110837
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110838
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110839
+  (0.0ms) SAVEPOINT active_record_1
110840
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110842
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110844
+  (0.0ms) SAVEPOINT active_record_1
110845
+ SQL (0.6ms) 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:56:27 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
110846
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110847
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110848
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110849
+  (0.0ms) SAVEPOINT active_record_1
110850
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110852
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110854
+  (0.0ms) SAVEPOINT active_record_1
110855
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110857
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110858
+  (0.0ms) SAVEPOINT active_record_1
110859
+ SQL (1.0ms) 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:56:27 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:27 UTC +00:00]]
110860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110861
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110862
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110863
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110864
+  (0.1ms) SAVEPOINT active_record_1
110865
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110867
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110868
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110869
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110870
+  (0.0ms) SAVEPOINT active_record_1
110871
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110873
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110875
+  (0.0ms) SAVEPOINT active_record_1
110876
+ SQL (0.6ms) 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:56:50 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00]]
110877
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110878
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110879
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110880
+  (0.0ms) SAVEPOINT active_record_1
110881
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110883
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110885
+  (0.0ms) SAVEPOINT active_record_1
110886
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110887
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110888
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110889
+  (0.0ms) SAVEPOINT active_record_1
110890
+ SQL (1.0ms) 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:56:50 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:56:50 UTC +00:00]]
110891
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110892
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110893
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110894
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110895
+  (0.1ms) SAVEPOINT active_record_1
110896
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110898
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110899
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110900
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110901
+  (0.1ms) SAVEPOINT active_record_1
110902
+ SQL (0.4ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110904
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110906
+  (0.1ms) SAVEPOINT active_record_1
110907
+ SQL (0.8ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110909
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110910
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110911
+  (0.1ms) SAVEPOINT active_record_1
110912
+ SQL (0.4ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110914
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110916
+  (0.0ms) SAVEPOINT active_record_1
110917
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110918
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110919
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110920
+  (0.0ms) SAVEPOINT active_record_1
110921
+ SQL (1.2ms) 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:57:33 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:33 UTC +00:00]]
110922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110923
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110924
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110925
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110926
+  (0.1ms) SAVEPOINT active_record_1
110927
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110929
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110930
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110931
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110932
+  (0.0ms) SAVEPOINT active_record_1
110933
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110935
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110937
+  (0.0ms) SAVEPOINT active_record_1
110938
+ SQL (0.6ms) 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:57:43 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
110939
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110940
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110941
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110942
+  (0.0ms) SAVEPOINT active_record_1
110943
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110945
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110947
+  (0.0ms) SAVEPOINT active_record_1
110948
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
110950
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110951
+  (0.0ms) SAVEPOINT active_record_1
110952
+ SQL (1.0ms) 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:57:43 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:57:43 UTC +00:00]]
110953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110954
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110955
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110956
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110957
+  (0.1ms) SAVEPOINT active_record_1
110958
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110960
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110961
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110962
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110963
+  (0.0ms) SAVEPOINT active_record_1
110964
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110966
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110968
+  (0.0ms) SAVEPOINT active_record_1
110969
+ SQL (0.6ms) 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:58:00 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
110970
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110971
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110972
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110973
+  (0.0ms) SAVEPOINT active_record_1
110974
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110976
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110978
+  (0.0ms) SAVEPOINT active_record_1
110979
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
110980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110981
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
110982
+  (0.0ms) SAVEPOINT active_record_1
110983
+ SQL (1.0ms) 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:58:00 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:00 UTC +00:00]]
110984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110985
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
110986
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110987
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
110988
+  (0.1ms) SAVEPOINT active_record_1
110989
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110991
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
110992
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
110993
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
110994
+  (0.0ms) SAVEPOINT active_record_1
110995
+ SQL (0.3ms) 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
+ HoneTest Load (0.4ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
110997
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
110999
+  (0.1ms) SAVEPOINT active_record_1
111000
+ SQL (0.3ms) INSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111002
+  (0.0ms) SAVEPOINT active_record_1
111003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111004
+  (0.0ms) SAVEPOINT active_record_1
111005
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111006
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111007
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111008
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
111009
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111010
+ HmanyFkTest Load (0.1ms) SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
111011
+  (0.0ms) SAVEPOINT active_record_1
111012
+ SQL (0.6ms) 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:58:18 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
111013
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111014
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111015
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111016
+  (0.0ms) SAVEPOINT active_record_1
111017
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111019
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111021
+  (0.0ms) SAVEPOINT active_record_1
111022
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111024
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111025
+  (0.0ms) SAVEPOINT active_record_1
111026
+ SQL (1.0ms) 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:58:18 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:18 UTC +00:00]]
111027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111028
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
111029
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111030
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111031
+  (0.1ms) SAVEPOINT active_record_1
111032
+ SQL (0.4ms) INSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111034
+  (0.0ms) SAVEPOINT active_record_1
111035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111036
+  (0.0ms) SAVEPOINT active_record_1
111037
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111038
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111039
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
111040
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111041
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
111042
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111043
+ HmanyFkTest Load (0.1ms) SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
111044
+  (0.1ms) SAVEPOINT active_record_1
111045
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111047
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
111048
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111049
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111050
+  (0.0ms) SAVEPOINT active_record_1
111051
+ SQL (0.3ms) 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
+ HoneTest Load (0.9ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111053
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111055
+  (0.1ms) SAVEPOINT active_record_1
111056
+ SQL (0.3ms) INSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111058
+  (0.0ms) SAVEPOINT active_record_1
111059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111060
+  (0.0ms) SAVEPOINT active_record_1
111061
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111062
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111063
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111064
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
111065
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111066
+ HmanyFkTest Load (0.1ms) SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
111067
+  (0.0ms) SAVEPOINT active_record_1
111068
+ SQL (0.6ms) 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:58:43 UTC +00:00], ["moderatable_id", nil], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
111069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111070
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111071
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111072
+  (0.0ms) SAVEPOINT active_record_1
111073
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111075
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111077
+  (0.0ms) SAVEPOINT active_record_1
111078
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111080
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111081
+  (0.0ms) SAVEPOINT active_record_1
111082
+ SQL (1.0ms) 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:58:43 UTC +00:00], ["moderatable_id", 1], ["moderatable_type", "Task"], ["updated_at", Tue, 18 Oct 2011 17:58:43 UTC +00:00]]
111083
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111084
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
111085
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111086
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111087
+  (0.2ms) SAVEPOINT active_record_1
111088
+ SQL (0.3ms) INSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111090
+  (0.0ms) SAVEPOINT active_record_1
111091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111092
+  (0.0ms) SAVEPOINT active_record_1
111093
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111095
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
111096
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111097
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
111098
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111099
+ HmanyFkTest Load (0.1ms) SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
111100
+  (0.1ms) SAVEPOINT active_record_1
111101
+ SQL (4.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111103
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111104
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111105
+  (0.0ms) SAVEPOINT active_record_1
111106
+ SQL (0.3ms) INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111108
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111110
+  (0.0ms) SAVEPOINT active_record_1
111111
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111112
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111113
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111114
+  (0.0ms) SAVEPOINT active_record_1
111115
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
111116
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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
+  (0.0ms) select sqlite_version(*)
111136
+  (0.5ms) CREATE TABLE "habtm_name_tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime, "updated_at" datetime) 
111137
+  (0.1ms) CREATE TABLE "habtm_name_tests_tasks" ("task_id" integer, "habtm_name_test_id" integer)
111138
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111018180207')
111139
+  (0.1ms) select sqlite_version(*)
111140
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
111141
+  (0.0ms) PRAGMA index_list("habtm_name_tests")
111142
+  (0.0ms) PRAGMA index_list("habtm_name_tests_tasks")
111143
+  (0.0ms) PRAGMA index_list("hjoin_tests")
111144
+  (0.0ms) PRAGMA index_list("hjoin_tests_tasks")
111145
+  (0.0ms) PRAGMA index_list("hmany_fk_tests")
111146
+  (0.0ms) PRAGMA index_list("hmanythrough_joins")
111147
+  (0.0ms) PRAGMA index_list("hmanythrough_tests")
111148
+  (0.0ms) PRAGMA index_list("hone_as_tests")
111149
+  (0.0ms) PRAGMA index_list("hone_tests")
111150
+  (0.0ms) PRAGMA index_list("hook_tests")
111151
+  (0.0ms) PRAGMA index_list("moderations")
111152
+  (0.0ms) PRAGMA index_list("photo_holders")
111153
+  (0.0ms) PRAGMA index_list("photos")
111154
+  (0.0ms) PRAGMA index_list("subtasks")
111155
+  (0.0ms) PRAGMA index_list("task_alls")
111156
+  (0.0ms) PRAGMA index_list("task_photos")
111157
+  (0.0ms) PRAGMA index_list("tasks")
111158
+  (0.1ms) SAVEPOINT active_record_1
111159
+ SQL (4.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111161
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111162
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111163
+  (0.0ms) SAVEPOINT active_record_1
111164
+ SQL (0.3ms) INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111166
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111167
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111168
+  (0.0ms) SAVEPOINT active_record_1
111169
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111171
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111172
+  (0.0ms) SAVEPOINT active_record_1
111173
+ SQL (1.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111175
+  (0.1ms) SELECT COUNT(*) FROM "habtm_name_tests"
111176
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111177
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111178
+  (0.1ms) SAVEPOINT active_record_1
111179
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111181
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111182
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111183
+  (0.0ms) SAVEPOINT active_record_1
111184
+ SQL (0.3ms) INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111186
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111188
+  (0.0ms) SAVEPOINT active_record_1
111189
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111191
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111192
+  (0.0ms) SAVEPOINT active_record_1
111193
+ SQL (1.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111195
+  (0.1ms) SELECT COUNT(*) FROM "habtm_name_tests"
111196
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111197
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111198
+  (0.1ms) SAVEPOINT active_record_1
111199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111200
+  (0.0ms) SAVEPOINT active_record_1
111201
+ SQL (0.3ms) 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
+  (0.1ms) INSERT INTO "habtm_name_tests_tasks" ("task_id", "habtm_name_test_id") VALUES (1, 1)
111203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111204
+  (0.0ms) SAVEPOINT active_record_1
111205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111206
+  (0.0ms) SAVEPOINT active_record_1
111207
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111209
+  (0.1ms) SELECT COUNT(*) FROM "habtm_name_tests"
111210
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111211
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111213
+ HabtmNameTest Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
111215
+ SQL (4.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111217
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111218
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111219
+  (0.0ms) SAVEPOINT active_record_1
111220
+ SQL (0.4ms) 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]]
111221
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111222
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111224
+  (0.0ms) SAVEPOINT active_record_1
111225
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111226
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111227
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111228
+  (0.0ms) SAVEPOINT active_record_1
111229
+ SQL (1.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111231
+  (0.1ms) SELECT COUNT(*) FROM "habtm_name_tests"
111232
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111233
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111234
+  (0.0ms) SAVEPOINT active_record_1
111235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111236
+  (0.0ms) SAVEPOINT active_record_1
111237
+ SQL (0.3ms) 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
+  (0.1ms) INSERT INTO "habtm_name_tests_tasks" ("task_id", "habtm_name_test_id") VALUES (1, 1)
111239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111240
+  (0.0ms) SAVEPOINT active_record_1
111241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111242
+  (0.0ms) SAVEPOINT active_record_1
111243
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111244
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111245
+  (0.1ms) SELECT COUNT(*) FROM "habtm_name_tests"
111246
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111247
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111249
+ HabtmNameTest Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
111251
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111253
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
111254
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
111255
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111256
+  (0.0ms) SAVEPOINT active_record_1
111257
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111259
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111261
+  (0.0ms) SAVEPOINT active_record_1
111262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111263
+  (0.0ms) SAVEPOINT active_record_1
111264
+ SQL (0.3ms) 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]]
111265
+  (0.1ms) INSERT INTO "hjoin_tests_tasks" ("task_id", "hjoin_test_id") VALUES (1, 1)
111266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111267
+  (0.0ms) SAVEPOINT active_record_1
111268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111269
+  (0.0ms) SAVEPOINT active_record_1
111270
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111271
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111272
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111273
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111275
+ HjoinTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
111277
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111279
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111280
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111281
+  (0.0ms) SAVEPOINT active_record_1
111282
+ SQL (0.3ms) 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]]
111283
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111284
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111285
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111286
+  (0.0ms) SAVEPOINT active_record_1
111287
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111289
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111290
+  (0.0ms) SAVEPOINT active_record_1
111291
+ SQL (0.9ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111293
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
111294
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111295
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111296
+  (0.0ms) SAVEPOINT active_record_1
111297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111298
+  (0.0ms) SAVEPOINT active_record_1
111299
+ SQL (0.3ms) 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
+  (0.1ms) INSERT INTO "hjoin_tests_tasks" ("hjoin_test_id", "task_id") VALUES (1, 1)
111301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111302
+  (0.0ms) SAVEPOINT active_record_1
111303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111304
+  (0.0ms) SAVEPOINT active_record_1
111305
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111307
+  (0.1ms) SELECT COUNT(*) FROM "hjoin_tests"
111308
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111309
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111311
+ HjoinTest Load (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
111313
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111315
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
111316
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
111317
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111318
+  (0.0ms) SAVEPOINT active_record_1
111319
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111321
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111323
+  (0.1ms) SAVEPOINT active_record_1
111324
+ SQL (0.4ms) INSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111326
+  (0.0ms) SAVEPOINT active_record_1
111327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111328
+  (0.0ms) SAVEPOINT active_record_1
111329
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111331
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111332
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
111333
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111334
+ HmanyFkTest Load (0.1ms) SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
111335
+  (0.0ms) SAVEPOINT active_record_1
111336
+ SQL (0.7ms) 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]]
111337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111338
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111339
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111340
+  (0.0ms) SAVEPOINT active_record_1
111341
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111343
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111345
+  (0.0ms) SAVEPOINT active_record_1
111346
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111348
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111349
+  (0.0ms) SAVEPOINT active_record_1
111350
+ SQL (1.2ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111352
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" 
111353
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111354
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111355
+  (0.0ms) SAVEPOINT active_record_1
111356
+ SQL (0.3ms) INSERT INTO "hmany_fk_tests" ("created_at", "something_id", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111358
+  (0.1ms) SAVEPOINT active_record_1
111359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111360
+  (0.0ms) SAVEPOINT active_record_1
111361
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111362
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111363
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests"
111364
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111365
+  (0.1ms) SELECT COUNT(*) FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1
111366
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111367
+ HmanyFkTest Load (0.1ms) SELECT "hmany_fk_tests".* FROM "hmany_fk_tests" WHERE "hmany_fk_tests"."something_id" = 1 LIMIT 1
111368
+  (0.1ms) SAVEPOINT active_record_1
111369
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111371
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
111372
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111373
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111374
+  (0.0ms) SAVEPOINT active_record_1
111375
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111377
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111379
+  (0.1ms) SAVEPOINT active_record_1
111380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111381
+  (0.0ms) SAVEPOINT active_record_1
111382
+ SQL (0.3ms) 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]]
111383
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111385
+  (0.0ms) SAVEPOINT active_record_1
111386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111387
+  (0.0ms) SAVEPOINT active_record_1
111388
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111389
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111390
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111391
+  (0.1ms) 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
+ Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111393
+ HmanythroughTest Load (0.2ms) 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
+  (0.1ms) SAVEPOINT active_record_1
111395
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111397
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111398
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111399
+  (0.0ms) SAVEPOINT active_record_1
111400
+ SQL (0.3ms) 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]]
111401
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111402
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111404
+  (0.0ms) SAVEPOINT active_record_1
111405
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111407
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111408
+  (0.0ms) SAVEPOINT active_record_1
111409
+ SQL (0.9ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111411
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
111412
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111413
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111414
+  (0.0ms) SAVEPOINT active_record_1
111415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111416
+  (0.0ms) SAVEPOINT active_record_1
111417
+ SQL (0.3ms) 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
+ SQL (0.2ms) 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]]
111419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111420
+  (0.0ms) SAVEPOINT active_record_1
111421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111422
+  (0.0ms) SAVEPOINT active_record_1
111423
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111425
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
111426
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111427
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111429
+ HmanythroughTest Load (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
111431
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111433
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111434
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111435
+  (0.0ms) SAVEPOINT active_record_1
111436
+ SQL (2.0ms) 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]]
111437
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111438
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111439
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111440
+  (0.0ms) SAVEPOINT active_record_1
111441
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111443
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111444
+  (0.0ms) SAVEPOINT active_record_1
111445
+ SQL (1.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111447
+  (0.0ms) SAVEPOINT active_record_1
111448
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111449
+ HoneAsTest Load (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111451
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
111452
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111453
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111454
+  (0.1ms) SAVEPOINT active_record_1
111455
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111457
+  (0.0ms) SAVEPOINT active_record_1
111458
+ SQL (0.2ms) 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", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
111459
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111460
+  (0.0ms) SAVEPOINT active_record_1
111461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111462
+  (0.0ms) SAVEPOINT active_record_1
111463
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111464
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111465
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
111466
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111467
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111469
+ HmanythroughTest Load (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111471
+ HmanythroughTest Load (0.1ms) 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
+ HmanythroughJoin Load (0.1ms) SELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1
111473
+  (0.0ms) SAVEPOINT active_record_1
111474
+ SQL (0.6ms) 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_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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111476
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests" 
111477
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111478
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111479
+  (0.0ms) SAVEPOINT active_record_1
111480
+ SQL (0.3ms) 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]]
111481
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111482
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111484
+  (0.0ms) SAVEPOINT active_record_1
111485
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111487
+  (0.0ms) SAVEPOINT active_record_1
111488
+ SQL (0.2ms) 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", "Data"], ["hmanythrough_test_id", 1], ["task_id", 1], ["updated_at", Tue, 18 Oct 2011 18:13:09 UTC +00:00]]
111489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111490
+  (0.0ms) SAVEPOINT active_record_1
111491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111492
+  (0.0ms) SAVEPOINT active_record_1
111493
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111495
+  (0.1ms) SELECT COUNT(*) FROM "hmanythrough_tests"
111496
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111497
+  (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111499
+ HmanythroughTest Load (0.1ms) 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
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111501
+ HmanythroughTest Load (0.1ms) 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
+ HmanythroughJoin Load (0.1ms) SELECT "hmanythrough_joins".* FROM "hmanythrough_joins" WHERE "hmanythrough_joins"."hmanythrough_test_id" = 1 LIMIT 1
111503
+  (0.1ms) SAVEPOINT active_record_1
111504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111505
+  (0.0ms) SAVEPOINT active_record_1
111506
+ SQL (0.6ms) 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 :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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111508
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
111509
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111510
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111511
+  (0.0ms) SAVEPOINT active_record_1
111512
+ SQL (0.3ms) 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]]
111513
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111514
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111515
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111516
+  (0.0ms) SAVEPOINT active_record_1
111517
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111519
+  (0.0ms) SAVEPOINT active_record_1
111520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111521
+  (0.0ms) SAVEPOINT active_record_1
111522
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111523
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111524
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
111525
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111526
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111527
+  (0.0ms) SAVEPOINT active_record_1
111528
+ SQL (0.6ms) 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]]
111529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111530
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111531
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111532
+  (0.1ms) SAVEPOINT active_record_1
111533
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111535
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111537
+  (0.0ms) SAVEPOINT active_record_1
111538
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111540
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111541
+  (0.1ms) SAVEPOINT active_record_1
111542
+ SQL (1.0ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111544
+  (0.0ms) SAVEPOINT active_record_1
111545
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111546
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111548
+  (0.0ms) SELECT COUNT(*) FROM "hone_as_tests" 
111549
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111550
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111551
+  (0.0ms) SAVEPOINT active_record_1
111552
+ SQL (0.3ms) 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]]
111553
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111554
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111555
+  (0.0ms) SAVEPOINT active_record_1
111556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111557
+  (0.0ms) SAVEPOINT active_record_1
111558
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111559
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111560
+  (0.1ms) SELECT COUNT(*) FROM "hone_as_tests" 
111561
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111562
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111563
+  (0.1ms) SAVEPOINT active_record_1
111564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111565
+  (0.0ms) SAVEPOINT active_record_1
111566
+ SQL (0.6ms) 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 :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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111568
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
111569
+  (0.0ms) SELECT COUNT(*) FROM "tasks"
111570
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111571
+  (0.0ms) SAVEPOINT active_record_1
111572
+ SQL (0.3ms) 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]]
111573
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111574
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111575
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111576
+  (0.1ms) SAVEPOINT active_record_1
111577
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111579
+  (0.0ms) SAVEPOINT active_record_1
111580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111581
+  (0.0ms) SAVEPOINT active_record_1
111582
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111583
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111584
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
111585
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111586
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111587
+  (0.0ms) SAVEPOINT active_record_1
111588
+ SQL (1.5ms) 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]]
111589
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111590
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111591
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111592
+  (0.1ms) SAVEPOINT active_record_1
111593
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111595
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111597
+  (0.0ms) SAVEPOINT active_record_1
111598
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111599
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111600
+ Task Load (0.4ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111601
+  (0.1ms) SAVEPOINT active_record_1
111602
+ SQL (0.9ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111604
+  (0.0ms) SAVEPOINT active_record_1
111605
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111606
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111608
+  (0.0ms) SELECT COUNT(*) FROM "hone_tests" 
111609
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111610
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111611
+  (0.1ms) SAVEPOINT active_record_1
111612
+ SQL (0.3ms) 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]]
111613
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111614
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111615
+  (0.0ms) SAVEPOINT active_record_1
111616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111617
+  (0.0ms) SAVEPOINT active_record_1
111618
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111619
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111620
+  (0.1ms) SELECT COUNT(*) FROM "hone_tests" 
111621
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111622
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111623
+  (0.1ms) SAVEPOINT active_record_1
111624
+ SQL (0.6ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111626
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111627
+  (0.0ms) SAVEPOINT active_record_1
111628
+ SQL (0.6ms) 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: \"\"\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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111630
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111631
+  (0.0ms) SAVEPOINT active_record_1
111632
+ SQL (0.3ms) INSERT INTO "hook_tests" ("created_at", "foo", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111634
+  (0.0ms) SAVEPOINT active_record_1
111635
+ SQL (0.2ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111637
+ HookTest Load (0.1ms) SELECT "hook_tests".* FROM "hook_tests" LIMIT 1
111638
+  (0.0ms) SAVEPOINT active_record_1
111639
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111641
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111642
+  (0.0ms) SAVEPOINT active_record_1
111643
+ SQL (1.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111645
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111646
+  (0.1ms) SAVEPOINT active_record_1
111647
+ SQL (0.6ms) 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
+ SQL (0.3ms) 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: 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111650
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
111651
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111652
+  (0.1ms) SAVEPOINT active_record_1
111653
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111655
+  (0.0ms) SAVEPOINT active_record_1
111656
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111657
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111658
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
111659
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
111660
+  (0.1ms) SAVEPOINT active_record_1
111661
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111663
+  (0.1ms) SELECT COUNT(*) FROM "photos"
111664
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111665
+  (0.1ms) SAVEPOINT active_record_1
111666
+ SQL (0.4ms) 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", nil], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
111667
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111668
+  (0.0ms) SAVEPOINT active_record_1
111669
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111670
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111671
+  (0.1ms) SELECT COUNT(*) FROM "photos"
111672
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
111673
+  (0.1ms) SAVEPOINT active_record_1
111674
+ SQL (0.6ms) 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-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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111676
+  (0.1ms) SELECT COUNT(*) FROM "photos" 
111677
+ Moderation Load (0.2ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111678
+  (0.0ms) SAVEPOINT active_record_1
111679
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111680
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111681
+  (0.1ms) SELECT COUNT(*) FROM "photos"
111682
+  (0.0ms) SAVEPOINT active_record_1
111683
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111685
+  (0.1ms) SELECT COUNT(*) FROM "photos"
111686
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111687
+  (0.0ms) SAVEPOINT active_record_1
111688
+ SQL (0.3ms) 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", nil], ["photo_holder_id", nil], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
111689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111690
+  (0.0ms) SAVEPOINT active_record_1
111691
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111692
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111693
+ Photo Load (0.2ms) SELECT "photos".* FROM "photos" LIMIT 1
111694
+  (0.1ms) SAVEPOINT active_record_1
111695
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
111696
+  (0.1ms) UPDATE "photos" SET "photo" = NULL, "updated_at" = '2011-10-18 18:13:10.102328' WHERE "photos"."id" = 1
111697
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111699
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
111700
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
111701
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111702
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
111703
+  (0.0ms) SAVEPOINT active_record_1
111704
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
111705
+  (0.1ms) UPDATE "photos" SET "photo" = 'test.jpg', "updated_at" = '2011-10-18 18:13:10.117575' WHERE "photos"."id" = 1
111706
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111707
+  (0.0ms) SAVEPOINT active_record_1
111708
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111710
+ Photo Load (0.1ms) SELECT "photos".* FROM "photos" LIMIT 1
111711
+  (0.1ms) SAVEPOINT active_record_1
111712
+ SQL (0.6ms) 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: 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111714
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
111715
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111716
+  (0.1ms) SELECT COUNT(*) FROM "task_photos" 
111717
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111718
+  (0.1ms) SAVEPOINT active_record_1
111719
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111721
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111723
+  (0.1ms) SAVEPOINT active_record_1
111724
+ SQL (0.3ms) INSERT INTO "task_photos" ("created_at", "photo", "task_id", "updated_at") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111726
+  (0.0ms) SAVEPOINT active_record_1
111727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111728
+  (0.0ms) SAVEPOINT active_record_1
111729
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111731
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111732
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111733
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111734
+ TaskPhoto Load (0.1ms) SELECT "task_photos".* FROM "task_photos" WHERE "task_photos"."task_id" = 1 LIMIT 1
111735
+  (0.0ms) SAVEPOINT active_record_1
111736
+ SQL (0.6ms) 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]]
111737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111738
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111739
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
111740
+  (0.1ms) SAVEPOINT active_record_1
111741
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111743
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111744
+  (0.0ms) SAVEPOINT active_record_1
111745
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111747
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111749
+  (0.0ms) SAVEPOINT active_record_1
111750
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111752
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
111753
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
111754
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111755
+  (0.0ms) SAVEPOINT active_record_1
111756
+ SQL (0.6ms) 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]]
111757
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111758
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111759
+  (0.0ms) SAVEPOINT active_record_1
111760
+ SQL (0.3ms) 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]]
111761
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111762
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111763
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111764
+  (0.0ms) SAVEPOINT active_record_1
111765
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111766
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111767
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111768
+  (0.0ms) SAVEPOINT active_record_1
111769
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111771
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111773
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111774
+  (0.0ms) SAVEPOINT active_record_1
111775
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111777
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111779
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111780
+  (0.0ms) SAVEPOINT active_record_1
111781
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111783
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111785
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111786
+  (0.0ms) SAVEPOINT active_record_1
111787
+ SQL (0.6ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111789
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111791
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
111792
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111793
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111794
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111795
+  (0.0ms) SAVEPOINT active_record_1
111796
+  (0.1ms) UPDATE "tasks" SET "title" = 'Hollywood Hills', "updated_at" = '2011-10-18 18:13:10.327840' WHERE "tasks"."id" = 1
111797
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111798
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111800
+  (0.0ms) SAVEPOINT active_record_1
111801
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 5]]
111802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111803
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111804
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111805
+  (0.0ms) SAVEPOINT active_record_1
111806
+ SQL (0.6ms) 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]]
111807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111808
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111809
+  (0.0ms) SAVEPOINT active_record_1
111810
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111811
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111812
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
111813
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
111814
+  (0.1ms) SAVEPOINT active_record_1
111815
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111817
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111818
+  (0.0ms) SAVEPOINT active_record_1
111819
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111821
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111823
+  (0.0ms) SAVEPOINT active_record_1
111824
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111826
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111827
+  (0.0ms) SAVEPOINT active_record_1
111828
+ SQL (0.3ms) 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]]
111829
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111830
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111831
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111832
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111833
+  (0.0ms) SAVEPOINT active_record_1
111834
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111835
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111836
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
111837
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111838
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
111839
+  (0.1ms) SAVEPOINT active_record_1
111840
+ SQL (0.6ms) 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 :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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111842
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111843
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
111844
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111845
+  (0.0ms) SAVEPOINT active_record_1
111846
+ SQL (0.3ms) 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]]
111847
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111848
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111849
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111850
+  (0.0ms) SAVEPOINT active_record_1
111851
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111853
+  (0.0ms) SAVEPOINT active_record_1
111854
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111855
+  (0.0ms) SAVEPOINT active_record_1
111856
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111858
+  (0.1ms) SELECT COUNT(*) FROM "moderations" 
111859
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111860
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
111861
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
111862
+  (0.0ms) SAVEPOINT active_record_1
111863
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111865
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
111866
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111867
+  (0.0ms) SAVEPOINT active_record_1
111868
+ SQL (0.3ms) INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111870
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111872
+  (0.0ms) SAVEPOINT active_record_1
111873
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111875
+  (0.0ms) SELECT COUNT(*) FROM "moderations"
111876
+ Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111877
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111878
+  (0.0ms) SAVEPOINT active_record_1
111879
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111881
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111882
+  (0.0ms) SAVEPOINT active_record_1
111883
+ SQL (0.3ms) 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
+ HoneTest Load (0.5ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111885
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111887
+  (0.0ms) SAVEPOINT active_record_1
111888
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111890
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111891
+  (0.0ms) SAVEPOINT active_record_1
111892
+ SQL (0.3ms) INSERT INTO "moderations" ("attr_name", "attr_value", "created_at", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111894
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
111895
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111896
+  (0.0ms) SELECT COUNT(*) FROM "moderations" 
111897
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111898
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111899
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111900
+  (0.0ms) SAVEPOINT active_record_1
111901
+  (0.1ms) UPDATE "tasks" SET "desc" = 'Hollywood Hills', "updated_at" = '2011-10-18 18:13:10.449370' WHERE "tasks"."id" = 1
111902
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111903
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111905
+  (0.0ms) SAVEPOINT active_record_1
111906
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
111907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111908
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
111909
+  (0.0ms) SAVEPOINT active_record_1
111910
+ SQL (0.6ms) 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", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
111911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111912
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
111913
+  (0.1ms) SAVEPOINT active_record_1
111914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111915
+  (0.0ms) SAVEPOINT active_record_1
111916
+ SQL (0.3ms) 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: 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111918
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111919
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
111920
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" IS NULL LIMIT 1
111921
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111922
+  (0.0ms) SAVEPOINT active_record_1
111923
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111925
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111927
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
111928
+  (0.0ms) SAVEPOINT active_record_1
111929
+  (0.2ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 18:13:10.476192' WHERE "subtasks"."id" = 1
111930
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111931
+  (0.0ms) SAVEPOINT active_record_1
111932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111933
+  (0.0ms) SAVEPOINT active_record_1
111934
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111935
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111936
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
111937
+ Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
111938
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111939
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
111940
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
111941
+  (0.1ms) SAVEPOINT active_record_1
111942
+ SQL (0.6ms) 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 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111944
+  (0.1ms) SELECT COUNT(*) FROM "task_alls" 
111945
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
111946
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111947
+  (0.0ms) SAVEPOINT active_record_1
111948
+ SQL (0.3ms) INSERT INTO "task_alls" ("created_at", "title", "updated_at", "value") VALUES (?, ?, ?, ?) [["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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111950
+  (0.1ms) SAVEPOINT active_record_1
111951
+ SQL (0.7ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111953
+  (0.0ms) SAVEPOINT active_record_1
111954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111955
+  (0.0ms) SAVEPOINT active_record_1
111956
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111957
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111958
+  (0.1ms) SELECT COUNT(*) FROM "task_alls" 
111959
+  (0.1ms) SELECT COUNT(*) FROM "subtasks"
111960
+ TaskAll Load (0.1ms) SELECT "task_alls".* FROM "task_alls" LIMIT 1
111961
+ TaskAll Load (0.1ms) SELECT "task_alls".* FROM "task_alls" LIMIT 1
111962
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_all_id" = 1 LIMIT 1
111963
+  (0.0ms) SAVEPOINT active_record_1
111964
+ SQL (1.9ms) 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", "Bye Bye"], ["updated_at", Tue, 18 Oct 2011 18:13:10 UTC +00:00]]
111965
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111966
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
111967
+  (0.1ms) SAVEPOINT active_record_1
111968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
111969
+  (0.0ms) SAVEPOINT active_record_1
111970
+ SQL (0.3ms) 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: 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111972
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
111973
+ SQL (0.0ms) DELETE FROM "subtasks"
111974
+  (0.0ms) SELECT COUNT(*) FROM "subtasks" 
111975
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111976
+  (0.1ms) SAVEPOINT active_record_1
111977
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111979
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111981
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
111982
+  (0.0ms) SAVEPOINT active_record_1
111983
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111985
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
111986
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
111987
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
111988
+  (0.0ms) SAVEPOINT active_record_1
111989
+ SQL (0.8ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111991
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
111992
+  (0.0ms) SAVEPOINT active_record_1
111993
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
111995
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
111997
+  (0.0ms) SAVEPOINT active_record_1
111998
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
111999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112000
+  (0.0ms) SELECT COUNT(*) FROM "tasks" 
112001
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112002
+  (0.0ms) SAVEPOINT active_record_1
112003
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112005
+  (0.1ms) SELECT COUNT(*) FROM "tasks"
112006
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112007
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
112008
+  (0.0ms) SAVEPOINT active_record_1
112009
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task'
112010
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
112011
+ HabtmNameTest Load (0.1ms) 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
+ HjoinTest Load (0.1ms) 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
112013
+ SQL (0.1ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]]
112014
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112015
+  (0.0ms) SAVEPOINT active_record_1
112016
+ SQL (0.0ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
112017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112018
+  (0.1ms) SELECT COUNT(*) FROM "tasks" 
112019
+  (0.0ms) SAVEPOINT active_record_1
112020
+ SQL (0.6ms) 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]]
112021
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112022
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112023
+  (0.1ms) SAVEPOINT active_record_1
112024
+ SQL (0.3ms) 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]]
112025
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112026
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
112027
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112028
+  (0.0ms) SAVEPOINT active_record_1
112029
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
112030
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112031
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112032
+  (0.1ms) SAVEPOINT active_record_1
112033
+ SQL (1.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112035
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112036
+  (0.0ms) SAVEPOINT active_record_1
112037
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112038
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
112039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112040
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112041
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
112042
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112043
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
112044
+  (0.0ms) SAVEPOINT active_record_1
112045
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112047
+  (0.0ms) SAVEPOINT active_record_1
112048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112049
+  (0.0ms) SAVEPOINT active_record_1
112050
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
112051
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112052
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112053
+  (0.0ms) SELECT COUNT(*) FROM "subtasks"
112054
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112055
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
112056
+  (0.0ms) SAVEPOINT active_record_1
112057
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112059
+  (0.0ms) SAVEPOINT active_record_1
112060
+ SQL (0.3ms) 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]]
112061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112062
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112063
+  (0.0ms) SAVEPOINT active_record_1
112064
+ SQL (0.3ms) 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]]
112065
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112066
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
112067
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112068
+  (0.0ms) SAVEPOINT active_record_1
112069
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
112070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112071
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112072
+  (0.0ms) SAVEPOINT active_record_1
112073
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112075
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112076
+  (0.0ms) SELECT COUNT(*) FROM "subtasks" 
112077
+  (0.0ms) SAVEPOINT active_record_1
112078
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112079
+ HoneAsTest Load (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112081
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112082
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112083
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
112084
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
112085
+  (0.0ms) SAVEPOINT active_record_1
112086
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 18:13:10.725827' WHERE "subtasks"."id" = 1
112087
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112088
+  (0.0ms) SAVEPOINT active_record_1
112089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112090
+  (0.0ms) SAVEPOINT active_record_1
112091
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
112092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112093
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112094
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" 
112095
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112096
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
112097
+  (0.0ms) SAVEPOINT active_record_1
112098
+ SQL (0.9ms) 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]]
112099
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112100
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112101
+  (0.0ms) SAVEPOINT active_record_1
112102
+ SQL (0.3ms) 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]]
112103
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112104
+ HoneAsTest Load (0.1ms) SELECT "hone_as_tests".* FROM "hone_as_tests" WHERE "hone_as_tests"."testable_id" = 1 AND "hone_as_tests"."testable_type" = 'Task' LIMIT 1
112105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112106
+  (0.0ms) SAVEPOINT active_record_1
112107
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
112108
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112109
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
112110
+  (0.1ms) SAVEPOINT active_record_1
112111
+ SQL (1.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112113
+  (0.0ms) SAVEPOINT active_record_1
112114
+ HoneTest Load (0.2ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112115
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112117
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
112118
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
112119
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112120
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112121
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
112122
+  (0.0ms) SAVEPOINT active_record_1
112123
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112125
+  (0.0ms) SAVEPOINT active_record_1
112126
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112127
+  (0.0ms) SAVEPOINT active_record_1
112128
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
112129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112130
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
112131
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
112132
+  (0.0ms) SAVEPOINT active_record_1
112133
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112135
+ Moderation Load (0.2ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112136
+  (0.0ms) SAVEPOINT active_record_1
112137
+ SQL (0.3ms) 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
+ HoneTest Load (0.1ms) SELECT "hone_tests".* FROM "hone_tests" WHERE "hone_tests"."task_id" = 1 LIMIT 1
112139
+ HoneAsTest Load (0.1ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112141
+  (0.0ms) SAVEPOINT active_record_1
112142
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
112143
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112144
+  (0.0ms) SAVEPOINT active_record_1
112145
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112147
+  (0.1ms) SELECT COUNT(*) FROM "moderations"
112148
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112149
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1
112150
+  (0.0ms) SAVEPOINT active_record_1
112151
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112153
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112154
+  (0.1ms) SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
112155
+ Moderation Load (0.1ms) SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
112156
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
112157
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
112158
+  (0.0ms) SAVEPOINT active_record_1
112159
+  (0.1ms) UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2011-10-18 18:13:10.887932' WHERE "subtasks"."id" = 1
112160
+  (0.1ms) RELEASE SAVEPOINT active_record_1
112161
+  (0.0ms) SAVEPOINT active_record_1
112162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112163
+  (0.0ms) SAVEPOINT active_record_1
112164
+ SQL (0.1ms) DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
112165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112166
+ Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT 1
112167
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
112168
+ Subtask Load (0.1ms) SELECT "subtasks".* FROM "subtasks" LIMIT 1