has_moderated 1.0.1 → 1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/has_moderated/moderation_model.rb +14 -3
- data/lib/has_moderated/version.rb +1 -1
- data/test/dummy/log/test.log +3268 -0
- data/test/dummy/spec/models/task_spec.rb +2 -1
- metadata +3 -3
@@ -34,13 +34,24 @@ module HasModerated
|
|
34
34
|
record
|
35
35
|
end
|
36
36
|
|
37
|
-
def accept
|
37
|
+
def accept!
|
38
38
|
record = apply
|
39
39
|
accept_changes(record)
|
40
40
|
self.destroy
|
41
41
|
record
|
42
42
|
end
|
43
43
|
|
44
|
+
def accept
|
45
|
+
begin
|
46
|
+
record = apply
|
47
|
+
accept_changes(record)
|
48
|
+
self.destroy
|
49
|
+
true
|
50
|
+
rescue
|
51
|
+
false
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
44
55
|
def destroy_with_moderation_callbacks
|
45
56
|
if moderatable_type
|
46
57
|
klass = moderatable_type.constantize
|
@@ -55,8 +66,8 @@ module HasModerated
|
|
55
66
|
|
56
67
|
def live_preview
|
57
68
|
self.transaction do
|
58
|
-
|
59
|
-
yield(
|
69
|
+
accept
|
70
|
+
yield(self.moderatable)
|
60
71
|
raise ActiveRecord::Rollback
|
61
72
|
end
|
62
73
|
# self.frozen? now became true
|
data/test/dummy/log/test.log
CHANGED
@@ -346857,3 +346857,3271 @@ Connecting to database specified by database.yml
|
|
346857
346857
|
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
346858
346858
|
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
346859
346859
|
[1m[35m (0.6ms)[0m rollback transaction
|
346860
|
+
Connecting to database specified by database.yml
|
346861
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
346862
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
346863
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "avatar"=>nil, "picture"=>nil, "parentable_id"=>nil, "parentable_type"=>nil, "title"=>nil, "created_at"=>nil, "updated_at"=>nil, "avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1630-801-7104/test.jpg"}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Photo2"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346864
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346865
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
346866
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
346867
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346868
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346869
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346870
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
346871
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
346873
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
346874
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346875
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
346876
|
+
[1m[35mPhoto2 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
346877
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
346878
|
+
[1m[35m (0.1ms)[0m begin transaction
|
346879
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346880
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346881
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346882
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
346883
|
+
[1m[36mPhoto3 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
346884
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
346885
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
346886
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
346887
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346888
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo4"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346889
|
+
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1630-801-3530/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo4"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346890
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346891
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
346892
|
+
[1m[35mPhoto4 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
346893
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
346894
|
+
[1m[35mPhoto4 Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
|
346895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346896
|
+
[1m[35mPhoto4 Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
346897
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "photos" SET "avatar" = 'test.jpg', "updated_at" = '2012-10-14 14:30:02.246782' WHERE "photos"."id" = 1[0m
|
346898
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346899
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346900
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
346901
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346902
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
346903
|
+
[1m[36mPhoto4 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
346904
|
+
[1m[35m (10.7ms)[0m rollback transaction
|
346905
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
346906
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
346907
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346908
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346909
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
346910
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
346911
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346912
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo5"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346913
|
+
[1m[36mPhoto5 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", 1]]
|
346914
|
+
[1m[35m (0.1ms)[0m UPDATE "photos" SET "avatar" = NULL, "updated_at" = '2012-10-14 14:30:02.353004' WHERE "photos"."id" = 1
|
346915
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1630-801-8599/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo5"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346916
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346917
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
346918
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
|
346919
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346920
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
346921
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "photos" SET "avatar" = 'test.jpg', "updated_at" = '2012-10-14 14:30:02.370582' WHERE "photos"."id" = 1[0m
|
346922
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346923
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346924
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
346925
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346926
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
346927
|
+
[1m[36mPhoto5 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
346928
|
+
[1m[35m (2.1ms)[0m rollback transaction
|
346929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
346930
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
346931
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346932
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo6"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346933
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1630-801-1046/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo6"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346934
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346935
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
346936
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
346937
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
346938
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346939
|
+
[1m[36m (1.6ms)[0m [1mrollback transaction[0m
|
346940
|
+
[1m[35m (0.1ms)[0m begin transaction
|
346941
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346942
|
+
[1m[35mSQL (2.0ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:photos=>[{"id"=>nil, "avatar"=>nil, "picture"=>nil, "parentable_id"=>nil, "parentable_type"=>nil, "title"=>nil, "created_at"=>nil, "updated_at"=>nil, "avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1630-801-2785/test.jpg"}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task7"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346943
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346944
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
346945
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
346946
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
346947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346948
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346949
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346950
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
346951
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["parentable_id", 1], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346952
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346953
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
346954
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
346955
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346956
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
346957
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
346958
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346959
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
346960
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE "photos"."parentable_id" = 1
|
346961
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
346962
|
+
[1m[35mPhoto7 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."parentable_id" = 1 LIMIT 1
|
346963
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
346964
|
+
[1m[35m (0.1ms)[0m begin transaction
|
346965
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346966
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task8"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346967
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346968
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
346969
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
346970
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
346971
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
346972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
346973
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346974
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
346975
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346976
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346977
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346978
|
+
[1m[35mTask8 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
346979
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346980
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346981
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346982
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
346983
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346984
|
+
[1m[35mTask8 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
346985
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE "photos"."parentable_id" = 1[0m
|
346986
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
346987
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
346988
|
+
[1m[35m (0.1ms)[0m begin transaction
|
346989
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
346990
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346991
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346992
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
346993
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
346994
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task9"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
346995
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
346996
|
+
[1m[35mTask9 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
346997
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
346998
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
346999
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347000
|
+
[1m[35mTask9 Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347001
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347002
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347003
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347004
|
+
[1m[35mTask9 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347005
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347006
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347007
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347008
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347009
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347010
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347011
|
+
[1m[36mTask9 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347012
|
+
[1m[35mSubtask9 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347013
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347014
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347015
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347016
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347017
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347018
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347019
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347020
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task10"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347021
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347022
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347023
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347024
|
+
[1m[35mTask10 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347025
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
347026
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347027
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347028
|
+
[1m[35mTask10 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347029
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347030
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347031
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347032
|
+
[1m[35mTask10 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347033
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347034
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347035
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347036
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347037
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347038
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347039
|
+
[1m[36mTask10 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347040
|
+
[1m[35mSubtask10 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347041
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347042
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347043
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347044
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347046
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347047
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347048
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347049
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347050
|
+
[1m[35mSubtask11 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
347051
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347052
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task11"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347053
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347054
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347055
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
347056
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347057
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347058
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347059
|
+
[1m[36mSubtask11 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
347060
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347061
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:02.872619' WHERE "subtasks"."id" = 1[0m
|
347062
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347063
|
+
[1m[36mTask11 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347065
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347066
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347067
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347068
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347069
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347070
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347071
|
+
[1m[36mSubtask11 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347072
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347073
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347074
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347075
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347076
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347077
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347078
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347079
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347080
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347081
|
+
[1m[36mSubtask12 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347082
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347083
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task12"], ["updated_at", Sun, 14 Oct 2012 14:30:02 UTC +00:00]]
|
347084
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347085
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347086
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
347087
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347088
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347089
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347090
|
+
[1m[35mSubtask12 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
347091
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347092
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:02.936296' WHERE "subtasks"."id" = 1
|
347093
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347094
|
+
[1m[35mTask12 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347095
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347096
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347097
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347098
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347099
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347100
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347101
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347102
|
+
[1m[35mSubtask12 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347103
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347104
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347105
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347106
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347108
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347109
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task13"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347110
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347111
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347112
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347113
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347114
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347115
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347116
|
+
[1m[35mTask13 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347117
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347118
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347119
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347120
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347121
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347122
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347123
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347124
|
+
[1m[35mSubtask13 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 ORDER BY "subtasks"."id" DESC LIMIT 1
|
347125
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347126
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:delete_associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task13"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347127
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347128
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347129
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
347130
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347131
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347132
|
+
[1m[35mSubtask13 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
347133
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347134
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "subtasks" SET "task_id" = NULL WHERE "subtasks"."task_id" = 1 AND "subtasks"."id" IN (1)
|
347135
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347137
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347138
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347139
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
347140
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347141
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347142
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
347143
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347144
|
+
[1m[35m (0.0ms)[0m begin transaction
|
347145
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347146
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347147
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347148
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347149
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347150
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>1, "parentable_type"=>"Task14"}]}}], ["moderatable_id", 1], ["moderatable_type", "Task14"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347151
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347152
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347153
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task14'[0m
|
347154
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347155
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347156
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347157
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347158
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", 1], ["parentable_type", "Task14"], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347159
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347160
|
+
[1m[35mTask14 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347161
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347162
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347163
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347164
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347165
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347166
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347167
|
+
[1m[36mTask14 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347168
|
+
[1m[35mSubtask14 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task14' LIMIT 1
|
347169
|
+
[1m[36mTask14 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347170
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347171
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347172
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347173
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347174
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347175
|
+
[1m[36mSubtask15 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1[0m
|
347176
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347177
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347178
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347179
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task15"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347180
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347181
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347182
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347183
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347184
|
+
[1m[35mSubtask15 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1
|
347185
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347186
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347187
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347188
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347189
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347190
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347191
|
+
[1m[36mSubtask15 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1[0m
|
347192
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347193
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "parentable_id" = 1, "parentable_type" = 'Task15', "updated_at" = '2012-10-14 14:30:03.181249' WHERE "subtasks"."id" = 1[0m
|
347194
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347195
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347196
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347197
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347198
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347199
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347200
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347201
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347202
|
+
[1m[35mSubtask15 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1
|
347203
|
+
[1m[36mTask15 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347204
|
+
[1m[35mTask15 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347205
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
347206
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347207
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347208
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347210
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347212
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task16"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347213
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347214
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347215
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347216
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
347217
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347218
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347219
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347220
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347221
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347222
|
+
[1m[35m (0.1ms)[0m INSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)
|
347223
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347224
|
+
[1m[35mTask16 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347225
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347226
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347227
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347228
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347229
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347230
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347231
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347232
|
+
[1m[35mSubtask16 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1
|
347233
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347235
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347236
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347237
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347238
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347239
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347240
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347241
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347242
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
347243
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347244
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347245
|
+
[1m[36mSubtask17 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347246
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347247
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task17"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347248
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347249
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347250
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347251
|
+
[1m[36mTask17 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347252
|
+
[1m[35mSubtask17 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
347253
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347254
|
+
[1m[35m (0.1ms)[0m INSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)
|
347255
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347257
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347258
|
+
[1m[35mTask17 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347259
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347260
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347261
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347262
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347263
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347264
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347265
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347266
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
347267
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347268
|
+
[1m[35mSubtask17 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1
|
347269
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347271
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347272
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347273
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347274
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347275
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347276
|
+
[1m[35mSubtask18 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
347277
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347278
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task18"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347279
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347280
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347281
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347282
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347283
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347284
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347285
|
+
[1m[36mSubtask18 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
347286
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347287
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)[0m
|
347288
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347289
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347290
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347291
|
+
[1m[36mTask18 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347292
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347293
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347295
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347296
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347297
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347298
|
+
[1m[35mTask18 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347299
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1[0m
|
347300
|
+
[1m[35mTask18 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347301
|
+
[1m[36mSubtask18 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1[0m
|
347302
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347303
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
347304
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347305
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347306
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347307
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347308
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347309
|
+
[1m[36mSubtask19 Load (0.2ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347310
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347311
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task19"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347312
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347313
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
347314
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347315
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347316
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347317
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347318
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347319
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
347320
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347321
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)[0m
|
347322
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347324
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347325
|
+
[1m[36mTask19 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347327
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347328
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347329
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347330
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347331
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347332
|
+
[1m[35mTask19 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347333
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1[0m
|
347334
|
+
[1m[35mTask19 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347335
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1[0m
|
347336
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347337
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347339
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347340
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347341
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347342
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347343
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_connections=>[{"id"=>nil, "title"=>"Connection 1", "m1_id"=>nil, "m2_id"=>nil, "created_at"=>nil, "updated_at"=>nil, :associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}]}}], ["moderatable_id", 1], ["moderatable_type", "Task20"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347344
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347345
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347346
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347347
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
347348
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347349
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347350
|
+
[1m[35mTask20 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347351
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347352
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347353
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347354
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347355
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", "Connection 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347356
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347357
|
+
[1m[36mTask20 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347358
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347359
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347360
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347361
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347362
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347363
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347364
|
+
[1m[35mTask20 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347365
|
+
[1m[36mSubtask20 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1[0m
|
347366
|
+
[1m[35mSubtask20 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
347367
|
+
[1m[36mTaskConnection20 Load (0.1ms)[0m [1mSELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m2_id" = 1 LIMIT 1[0m
|
347368
|
+
[1m[35mSubtask20 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
347369
|
+
[1m[36mTask20 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347370
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347371
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347372
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347373
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347374
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347375
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347376
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347377
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task21"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347378
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347379
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347380
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347381
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
347382
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347383
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347384
|
+
[1m[35mTask21 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347385
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347386
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347387
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347388
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347389
|
+
[1m[36mTask21 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347390
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347391
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347392
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347393
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347394
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347395
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347396
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347397
|
+
[1m[36mTask21 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347398
|
+
[1m[35mSubtask21 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1
|
347399
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347400
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347401
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347402
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347403
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347404
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347405
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347406
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task22"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347407
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347408
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "task_connections"
|
347409
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347410
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347411
|
+
[1m[36mTask22 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347412
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347413
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347414
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347415
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347416
|
+
[1m[35mTask22 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347417
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347418
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347419
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347420
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347421
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347422
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347423
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347424
|
+
[1m[35mTask22 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347425
|
+
[1m[36mSubtask22 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1[0m
|
347426
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347427
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347428
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347429
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347430
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task23"], ["updated_at", Sun, 14 Oct 2012 14:30:03 UTC +00:00]]
|
347431
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347432
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347433
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347434
|
+
[1m[35mTask23 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347435
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1[0m
|
347436
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347437
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347438
|
+
[1m[35mTask23 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347439
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347440
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347441
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347442
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347443
|
+
[1m[36mTask23 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347444
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347445
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347446
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347447
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347448
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347449
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347450
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1
|
347451
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347452
|
+
[1m[35mSubtask23 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1
|
347453
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347454
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347455
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347456
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347457
|
+
[1m[36mSubtask24 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347458
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347459
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347460
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347461
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task24"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347462
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347463
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347464
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347465
|
+
[1m[36mTask24 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347466
|
+
[1m[35mSubtask24 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347467
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347468
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347469
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347470
|
+
[1m[35mTask24 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347471
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347472
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347473
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347474
|
+
[1m[35mSubtask24 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347475
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347476
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:04.148578' WHERE "subtasks"."id" = 1
|
347477
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347478
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347479
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347480
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347481
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347482
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347483
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347484
|
+
[1m[35mTask24 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347485
|
+
[1m[36mSubtask24 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347486
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347487
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347488
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347489
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347490
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347491
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347492
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347493
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347494
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347495
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347496
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347497
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task25"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347498
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347499
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347500
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347501
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347502
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347503
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347504
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347505
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347506
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
347507
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347508
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347509
|
+
[1m[36mSubtask25 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347510
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347511
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:04.210004' WHERE "subtasks"."id" = 1[0m
|
347512
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347513
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347514
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347516
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347517
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347518
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347519
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347520
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347521
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347522
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347523
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347524
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347525
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347526
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347527
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347528
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task26"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347529
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347530
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347531
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347532
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347533
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347534
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347535
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347536
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347537
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347538
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347539
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:04.322571' WHERE "subtasks"."id" = 1[0m
|
347540
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347541
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347542
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347543
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347544
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347545
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347546
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347547
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347548
|
+
[1m[35mSubtask26 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347549
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347550
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347551
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:delete_associations=>{:renamed_subtask=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task26"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347552
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347553
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347554
|
+
[1m[35mSubtask26 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347555
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347556
|
+
[1m[35mTask26 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347557
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347558
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347559
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = NULL, "updated_at" = '2012-10-14 14:30:04.338633' WHERE "subtasks"."id" = 1[0m
|
347560
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347561
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347562
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347563
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347564
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347565
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347566
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
347567
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347568
|
+
[1m[35mTask26 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347569
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347570
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347571
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347572
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347573
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347574
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347575
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347576
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347577
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347578
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347579
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347580
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347581
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtask=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task27"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347582
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347583
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347584
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347585
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347586
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347587
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347588
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347589
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347590
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347591
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
347592
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347593
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347594
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347595
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:04.397124' WHERE "subtasks"."id" = 1[0m
|
347596
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347597
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347598
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347599
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347600
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347602
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347603
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347604
|
+
[1m[35mTask27 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347605
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347606
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347607
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347608
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347609
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347610
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347611
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347612
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347613
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347614
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347615
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347616
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347617
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtask=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task28"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347618
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347619
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347620
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347621
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347622
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347623
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347624
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347625
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347626
|
+
[1m[35mSubtask28 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
347627
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347628
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347629
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347631
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:30:04.454919' WHERE "subtasks"."id" = 1[0m
|
347632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347634
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347635
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347636
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347637
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347638
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
347639
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
347640
|
+
[1m[35mTask28 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347641
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
347642
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347643
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347644
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347645
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{}}}], ["moderatable_id", nil], ["moderatable_type", "Task29"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347646
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347647
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347648
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347649
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347650
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347651
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347652
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347653
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347654
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347655
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347656
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347657
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347658
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347659
|
+
[1m[36mTask29 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347660
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
347661
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347662
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347663
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task30"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347664
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347665
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
347666
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347667
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347668
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347669
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347670
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347671
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347672
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347673
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
347674
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347675
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347676
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347677
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347678
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347679
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347680
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
347681
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347682
|
+
[1m[35mSubtask30 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
347683
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347684
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347685
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347686
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{}}}], ["moderatable_id", nil], ["moderatable_type", "Task31"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347687
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347688
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347689
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347690
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347691
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347692
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347693
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347694
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347695
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347696
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347697
|
+
[1m[36mTask31 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347698
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
347699
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347700
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347701
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347702
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347703
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347704
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347705
|
+
[1m[36mTask32 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347706
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347707
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:destroy=>true}], ["moderatable_id", 1], ["moderatable_type", "Task32"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347708
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347709
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
347710
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347711
|
+
[1m[36mTask32 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347712
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347713
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task32'[0m
|
347714
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347715
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 1]]
|
347716
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347717
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347718
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347719
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347720
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
347721
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347722
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347723
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347724
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", "Description"], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347725
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task33"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347726
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347727
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347728
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347729
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347730
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347731
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347732
|
+
[1m[35m (0.4ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:04.724576' WHERE "tasks"."id" = 1
|
347733
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347734
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347735
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347736
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347737
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347738
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347739
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347740
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 2"}}], ["moderatable_id", 1], ["moderatable_type", "Task33"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347741
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347742
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
347743
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347744
|
+
[1m[35mTask33 Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347745
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347746
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "title" = 'Task 2', "updated_at" = '2012-10-14 14:30:04.794128' WHERE "tasks"."id" = 1
|
347747
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347748
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347749
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
347750
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347751
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
347752
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347753
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347754
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347755
|
+
[1m[36mTask34 Exists (0.2ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
347756
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1
|
347757
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347758
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task34"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347759
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347760
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347761
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
347762
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1
|
347763
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347764
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 2], ["moderatable_type", "Task34"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347765
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347766
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" LIMIT 1
|
347767
|
+
[1m[36mTask34 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347768
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347769
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 1) LIMIT 1[0m
|
347770
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 1) LIMIT 1
|
347771
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:04.846248' WHERE "tasks"."id" = 1[0m
|
347772
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347773
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347774
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347775
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347776
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347777
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
347778
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
347779
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" LIMIT 1[0m
|
347780
|
+
[1m[35mTask34 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 LIMIT 1
|
347781
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347782
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 2) LIMIT 1
|
347783
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
347784
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" LIMIT 1
|
347785
|
+
[1m[36mTask34 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 LIMIT 1[0m
|
347786
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347787
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 2) LIMIT 1[0m
|
347788
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
347789
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347790
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347791
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347792
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{:test=>"ok"}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task35"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347793
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347794
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347795
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
347796
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347797
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347798
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task36"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347799
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347800
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347801
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347802
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347803
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347804
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347805
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347806
|
+
[1m[35mSQL (56.9ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:04 UTC +00:00]]
|
347807
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347808
|
+
[1m[35mTask37 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347809
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347810
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:destroy=>true}], ["moderatable_id", 1], ["moderatable_type", "Task37"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347811
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347812
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347813
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347814
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347815
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347816
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347817
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347818
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>nil, "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task38"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347819
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347820
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347821
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347822
|
+
[1m[35m (0.0ms)[0m begin transaction
|
347823
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347824
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347825
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", "Test!"], ["moderatable_id", 1], ["moderatable_type", "Task39"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347826
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347827
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
347828
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347829
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347830
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347831
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347832
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347833
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task40"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347834
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347835
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347836
|
+
[1m[35mTask40 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347837
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347838
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347839
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347840
|
+
[1m[35m (0.3ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:05.113610' WHERE "tasks"."id" = 1
|
347841
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347842
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
347843
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347844
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347845
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347846
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347847
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task41"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347848
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347849
|
+
[1m[36mTask41 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347850
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347851
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347852
|
+
[1m[35mTask41 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347853
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:05.153439' WHERE "tasks"."id" = 1[0m
|
347854
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347855
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
347856
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
347857
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347858
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347859
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347860
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task42"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347861
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347862
|
+
[1m[35mTask42 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347863
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347864
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347865
|
+
[1m[36mTask42 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347866
|
+
[1m[35m (0.4ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:05.190679' WHERE "tasks"."id" = 1
|
347867
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347868
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
347869
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347870
|
+
[1m[35m (0.0ms)[0m begin transaction
|
347871
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347872
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347873
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task43"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347874
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347875
|
+
[1m[36mTask43 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
347876
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347877
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347878
|
+
[1m[35mTask43 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347879
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:05.286592' WHERE "tasks"."id" = 1[0m
|
347880
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347881
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
347882
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347884
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347885
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347886
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task44"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347887
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347888
|
+
[1m[35mTask44 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
347889
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347890
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347891
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347892
|
+
[1m[35mTask44 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347893
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:30:05.323726' WHERE "tasks"."id" = 1[0m
|
347894
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
347895
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
347896
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
347897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347898
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347899
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347900
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347901
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347902
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task45"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347903
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347904
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347905
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347906
|
+
[1m[35mTask45 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
347907
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347908
|
+
[1m[35mTask45 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347909
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347910
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
347911
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
347912
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347913
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347914
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347915
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347916
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347917
|
+
[1m[36mSQL (1.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["data", {:associations=>{:renamed_connections=>[{"id"=>nil, "title"=>"Connection 1", "m1_id"=>nil, "m2_id"=>nil, "created_at"=>nil, "updated_at"=>nil, :associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}]}}], ["moderatable_id", 1], ["moderatable_type", "Task46"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347918
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347919
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347920
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347921
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
347922
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
347923
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347924
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347925
|
+
[1m[36mTask46 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
347926
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347927
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", "Connection 1"], ["updated_at", Sun, 14 Oct 2012 14:30:05 UTC +00:00]]
|
347928
|
+
[1m[35mTask46 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
347929
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347930
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
347931
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347932
|
+
Connecting to database specified by database.yml
|
347933
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
347934
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347935
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "avatar"=>nil, "picture"=>nil, "parentable_id"=>nil, "parentable_type"=>nil, "title"=>nil, "created_at"=>nil, "updated_at"=>nil, "avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1631-811-8055/test.jpg"}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Photo2"], ["updated_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00]]
|
347936
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347937
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
347938
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
347939
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347940
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00]]
|
347941
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347942
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347943
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347944
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
347945
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
347946
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347947
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
347948
|
+
[1m[35mPhoto2 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
347949
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
347950
|
+
[1m[35m (0.1ms)[0m begin transaction
|
347951
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347952
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00]]
|
347953
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347954
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
347955
|
+
[1m[36mPhoto3 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
347956
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
347957
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347958
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347959
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:40 UTC +00:00]]
|
347960
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo4"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
347961
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1631-811-6766/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo4"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
347962
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347963
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
347964
|
+
[1m[35mPhoto4 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
347965
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347966
|
+
[1m[35mPhoto4 Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
|
347967
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347968
|
+
[1m[35mPhoto4 Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
347969
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "photos" SET "avatar" = 'test.jpg', "updated_at" = '2012-10-14 14:31:41.027258' WHERE "photos"."id" = 1[0m
|
347970
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
347971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347972
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
347973
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347974
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
347975
|
+
[1m[36mPhoto4 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
347976
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
347977
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347978
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
347979
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
347980
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347981
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
347982
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
347983
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347984
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo5"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
347985
|
+
[1m[36mPhoto5 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", 1]]
|
347986
|
+
[1m[35m (0.1ms)[0m UPDATE "photos" SET "avatar" = NULL, "updated_at" = '2012-10-14 14:31:41.121690' WHERE "photos"."id" = 1
|
347987
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1631-811-2140/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo5"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
347988
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347989
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
347990
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
|
347991
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347992
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
347993
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "photos" SET "avatar" = 'test.jpg', "updated_at" = '2012-10-14 14:31:41.138934' WHERE "photos"."id" = 1[0m
|
347994
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
347995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
347996
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
347997
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
347998
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
347999
|
+
[1m[36mPhoto5 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
348000
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
348001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348002
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348003
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348004
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo6"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348005
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1631-811-0314/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo6"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348006
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348007
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348008
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348009
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
348010
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348011
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348012
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348013
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348014
|
+
[1m[35mSQL (2.0ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:photos=>[{"id"=>nil, "avatar"=>nil, "picture"=>nil, "parentable_id"=>nil, "parentable_type"=>nil, "title"=>nil, "created_at"=>nil, "updated_at"=>nil, "avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1631-811-1226/test.jpg"}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task7"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348015
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348016
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348017
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
348018
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348019
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348020
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348021
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348022
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348023
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["parentable_id", 1], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348024
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348025
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348026
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348027
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348028
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348029
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348030
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348031
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348032
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE "photos"."parentable_id" = 1
|
348033
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348034
|
+
[1m[35mPhoto7 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."parentable_id" = 1 LIMIT 1
|
348035
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
348036
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348037
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348038
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task8"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348039
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348040
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348041
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
348042
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
348043
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348045
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348046
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348047
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348048
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348049
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348050
|
+
[1m[35mTask8 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348051
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348052
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348053
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348054
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348055
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348056
|
+
[1m[35mTask8 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348057
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE "photos"."parentable_id" = 1[0m
|
348058
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
348059
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348060
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348061
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348062
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348063
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348064
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348065
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348066
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task9"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348067
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348068
|
+
[1m[35mTask9 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348069
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
348070
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348071
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348072
|
+
[1m[35mTask9 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348073
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348074
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348075
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348076
|
+
[1m[35mTask9 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348077
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348078
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348079
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348080
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348081
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348082
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348083
|
+
[1m[36mTask9 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348084
|
+
[1m[35mSubtask9 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348085
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348086
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348087
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348088
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348089
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348090
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348091
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348092
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task10"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348093
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348094
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348095
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348096
|
+
[1m[35mTask10 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348097
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
348098
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348099
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348100
|
+
[1m[35mTask10 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348101
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348102
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348103
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348104
|
+
[1m[35mTask10 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348105
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348106
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348107
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348108
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348109
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348110
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348111
|
+
[1m[36mTask10 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348112
|
+
[1m[35mSubtask10 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348113
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348115
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348116
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348117
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348118
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348119
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348120
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348121
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348122
|
+
[1m[35mSubtask11 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
348123
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348124
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task11"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348125
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348126
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348127
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
348128
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348129
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348130
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348131
|
+
[1m[36mSubtask11 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
348132
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348133
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:41.630473' WHERE "subtasks"."id" = 1[0m
|
348134
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348135
|
+
[1m[36mTask11 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348137
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348138
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348139
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348140
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348141
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348142
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348143
|
+
[1m[36mSubtask11 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348144
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348145
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348146
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348147
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348148
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348149
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348150
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348151
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348152
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348153
|
+
[1m[36mSubtask12 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348154
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348155
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task12"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348156
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348157
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348158
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
348159
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348160
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348161
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348162
|
+
[1m[35mSubtask12 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
348163
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348164
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:41.693076' WHERE "subtasks"."id" = 1
|
348165
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348166
|
+
[1m[35mTask12 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348167
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348168
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348169
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348170
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348171
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348172
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348173
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348174
|
+
[1m[35mSubtask12 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348175
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348176
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348177
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348178
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348179
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348180
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348181
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task13"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348182
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348183
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348184
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348185
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348186
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348187
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348188
|
+
[1m[35mTask13 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348189
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348190
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348192
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348193
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348194
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348195
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348196
|
+
[1m[35mSubtask13 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 ORDER BY "subtasks"."id" DESC LIMIT 1
|
348197
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348198
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:delete_associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task13"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348199
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348200
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348201
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
348202
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348203
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348204
|
+
[1m[35mSubtask13 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
348205
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348206
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "subtasks" SET "task_id" = NULL WHERE "subtasks"."task_id" = 1 AND "subtasks"."id" IN (1)
|
348207
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348208
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348210
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348211
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
348212
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348213
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348214
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
348215
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348216
|
+
[1m[35m (0.0ms)[0m begin transaction
|
348217
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348218
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348219
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348220
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348221
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348222
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>1, "parentable_type"=>"Task14"}]}}], ["moderatable_id", 1], ["moderatable_type", "Task14"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348223
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348224
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348225
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task14'[0m
|
348226
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348227
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348228
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348229
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348230
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", 1], ["parentable_type", "Task14"], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348231
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348232
|
+
[1m[35mTask14 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348233
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348234
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348236
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348237
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348238
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348239
|
+
[1m[36mTask14 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348240
|
+
[1m[35mSubtask14 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task14' LIMIT 1
|
348241
|
+
[1m[36mTask14 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348242
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348243
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348244
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348245
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348246
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348247
|
+
[1m[36mSubtask15 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1[0m
|
348248
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348249
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348250
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348251
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task15"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348252
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348253
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348254
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348255
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348256
|
+
[1m[35mSubtask15 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1
|
348257
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348258
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348259
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348260
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348261
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:41 UTC +00:00]]
|
348262
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348263
|
+
[1m[36mSubtask15 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1[0m
|
348264
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348265
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "parentable_id" = 1, "parentable_type" = 'Task15', "updated_at" = '2012-10-14 14:31:41.937393' WHERE "subtasks"."id" = 1[0m
|
348266
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348267
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348268
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348269
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348270
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348271
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348272
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348273
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348274
|
+
[1m[35mSubtask15 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1
|
348275
|
+
[1m[36mTask15 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348276
|
+
[1m[35mTask15 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348277
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348278
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348279
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348280
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348281
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348282
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348283
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348284
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task16"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348285
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348286
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348287
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348288
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
348289
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348290
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348291
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348292
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348293
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348294
|
+
[1m[35m (0.1ms)[0m INSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)
|
348295
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348296
|
+
[1m[35mTask16 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348297
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348298
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348299
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348300
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348301
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348302
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348303
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348304
|
+
[1m[35mSubtask16 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1
|
348305
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348306
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348307
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348308
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348309
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348310
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348311
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348312
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348313
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348314
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
348315
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348316
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348317
|
+
[1m[36mSubtask17 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348318
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348319
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task17"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348320
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348321
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348322
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348323
|
+
[1m[36mTask17 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348324
|
+
[1m[35mSubtask17 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
348325
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348326
|
+
[1m[35m (0.1ms)[0m INSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)
|
348327
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348328
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348329
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348330
|
+
[1m[35mTask17 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348331
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348332
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348333
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348334
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348335
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348336
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348337
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348338
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
348339
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348340
|
+
[1m[35mSubtask17 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1
|
348341
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348342
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348343
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348344
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348345
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348346
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348347
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348348
|
+
[1m[35mSubtask18 Load (0.2ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
348349
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348350
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task18"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348351
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348352
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348353
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348354
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348355
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348356
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348357
|
+
[1m[36mSubtask18 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
348358
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348359
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)[0m
|
348360
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348361
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348362
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348363
|
+
[1m[36mTask18 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348364
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348365
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348366
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348367
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348368
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348369
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348370
|
+
[1m[35mTask18 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348371
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1[0m
|
348372
|
+
[1m[35mTask18 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348373
|
+
[1m[36mSubtask18 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1[0m
|
348374
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
348375
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
348376
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348377
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348378
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348379
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348380
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348381
|
+
[1m[36mSubtask19 Load (0.2ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348382
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348383
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task19"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348384
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348385
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
348386
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348387
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348389
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348390
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348391
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
348392
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348393
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)[0m
|
348394
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348395
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348396
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348397
|
+
[1m[36mTask19 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348398
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348399
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348400
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348401
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348402
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348403
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348404
|
+
[1m[35mTask19 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348405
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1[0m
|
348406
|
+
[1m[35mTask19 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348407
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1[0m
|
348408
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348409
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348410
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348411
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348412
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348413
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348414
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348415
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_connections=>[{"id"=>nil, "title"=>"Connection 1", "m1_id"=>nil, "m2_id"=>nil, "created_at"=>nil, "updated_at"=>nil, :associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}]}}], ["moderatable_id", 1], ["moderatable_type", "Task20"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348416
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348417
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348418
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348419
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
348420
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348421
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348422
|
+
[1m[35mTask20 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348423
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348424
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348425
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348426
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348427
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", "Connection 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348428
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348429
|
+
[1m[36mTask20 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348430
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348431
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348432
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348433
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348434
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348435
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348436
|
+
[1m[35mTask20 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348437
|
+
[1m[36mSubtask20 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1[0m
|
348438
|
+
[1m[35mSubtask20 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
348439
|
+
[1m[36mTaskConnection20 Load (0.1ms)[0m [1mSELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m2_id" = 1 LIMIT 1[0m
|
348440
|
+
[1m[35mSubtask20 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
348441
|
+
[1m[36mTask20 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348442
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348443
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348444
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348445
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348446
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348447
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348448
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348449
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task21"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348450
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348451
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348452
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348453
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
348454
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348455
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348456
|
+
[1m[35mTask21 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348457
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348458
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348459
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348460
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348461
|
+
[1m[36mTask21 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348462
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348463
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348464
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348465
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348466
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348467
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348468
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348469
|
+
[1m[36mTask21 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348470
|
+
[1m[35mSubtask21 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1
|
348471
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348472
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348473
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348474
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348475
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348476
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348477
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348478
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task22"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348479
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348480
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "task_connections"
|
348481
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348482
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348483
|
+
[1m[36mTask22 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348484
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348485
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348486
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348487
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348488
|
+
[1m[35mTask22 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348489
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348490
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348491
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348492
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348493
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348494
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348495
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348496
|
+
[1m[35mTask22 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348497
|
+
[1m[36mSubtask22 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1[0m
|
348498
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348499
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348500
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348501
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348502
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task23"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348503
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348504
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348505
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348506
|
+
[1m[35mTask23 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348507
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1[0m
|
348508
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348509
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348510
|
+
[1m[35mTask23 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348511
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348512
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348513
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348514
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348515
|
+
[1m[36mTask23 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348516
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348517
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348518
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348519
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348520
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348521
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348522
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1
|
348523
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348524
|
+
[1m[35mSubtask23 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1
|
348525
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348526
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348527
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348528
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348529
|
+
[1m[36mSubtask24 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348530
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348531
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348532
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348533
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task24"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348534
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348535
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348536
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348537
|
+
[1m[36mTask24 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348538
|
+
[1m[35mSubtask24 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348539
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348540
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348541
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348542
|
+
[1m[35mTask24 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348543
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348544
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348545
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348546
|
+
[1m[35mSubtask24 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348547
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348548
|
+
[1m[35m (0.2ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:42.901220' WHERE "subtasks"."id" = 1
|
348549
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348550
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348551
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348552
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348553
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348554
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348555
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348556
|
+
[1m[35mTask24 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348557
|
+
[1m[36mSubtask24 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348558
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348559
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348560
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348561
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348562
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348563
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348564
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348565
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348566
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348567
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348568
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348569
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task25"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348570
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348571
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348572
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348573
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348574
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348575
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348576
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348577
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348578
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
348579
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348580
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348581
|
+
[1m[36mSubtask25 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348583
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:42.962856' WHERE "subtasks"."id" = 1[0m
|
348584
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348585
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348586
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348587
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348588
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348589
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348590
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348591
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348592
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348593
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348594
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348595
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348596
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:42 UTC +00:00]]
|
348597
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348598
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348599
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348600
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task26"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348601
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348602
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348603
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348604
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348605
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348606
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348607
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348608
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348609
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348610
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348611
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:43.074139' WHERE "subtasks"."id" = 1[0m
|
348612
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348613
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348614
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348615
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348616
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348617
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348618
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348619
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348620
|
+
[1m[35mSubtask26 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348621
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348622
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348623
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:delete_associations=>{:renamed_subtask=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task26"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348624
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348625
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348626
|
+
[1m[35mSubtask26 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348627
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348628
|
+
[1m[35mTask26 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348629
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348631
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = NULL, "updated_at" = '2012-10-14 14:31:43.090232' WHERE "subtasks"."id" = 1[0m
|
348632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348634
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348635
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348636
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348637
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348638
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
348639
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348640
|
+
[1m[35mTask26 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348641
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348642
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348643
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348644
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348645
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348646
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348647
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348648
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348649
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348650
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348651
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348652
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348653
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtask=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task27"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348654
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348655
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348656
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348657
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348658
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348659
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348660
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348661
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348662
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348663
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
348664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348665
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348666
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348667
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:43.148556' WHERE "subtasks"."id" = 1[0m
|
348668
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348669
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348670
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348671
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348672
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348673
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348674
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348675
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348676
|
+
[1m[35mTask27 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348677
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348678
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348679
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348680
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348681
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348682
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348683
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348684
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348685
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348686
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348687
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348688
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348689
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtask=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task28"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348690
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348691
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348692
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348693
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348694
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348695
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348696
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348697
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348698
|
+
[1m[35mSubtask28 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
348699
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348700
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348701
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348702
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348703
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:31:43.205359' WHERE "subtasks"."id" = 1[0m
|
348704
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348705
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348706
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348707
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348708
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348709
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348710
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
348711
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
348712
|
+
[1m[35mTask28 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348713
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
348714
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348715
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348716
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348717
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{}}}], ["moderatable_id", nil], ["moderatable_type", "Task29"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348718
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348719
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348720
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348721
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348722
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348723
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348724
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348725
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348726
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348727
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348728
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348729
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348730
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348731
|
+
[1m[36mTask29 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348732
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
348733
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348734
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348735
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task30"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348736
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348737
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
348738
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348739
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348740
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348741
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348742
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348743
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348744
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348745
|
+
[1m[36mTask30 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
348746
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348747
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348748
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348749
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348750
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348751
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348752
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
348753
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348754
|
+
[1m[35mSubtask30 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
348755
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348756
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348757
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348758
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{}}}], ["moderatable_id", nil], ["moderatable_type", "Task31"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348759
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348760
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348761
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348762
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348763
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348764
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348765
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348766
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348767
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348768
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348769
|
+
[1m[36mTask31 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348770
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
348771
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348772
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348773
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348774
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348775
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348776
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348777
|
+
[1m[36mTask32 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348778
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348779
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:destroy=>true}], ["moderatable_id", 1], ["moderatable_type", "Task32"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348780
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348781
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
348782
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348783
|
+
[1m[36mTask32 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348784
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348785
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task32'[0m
|
348786
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348787
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 1]]
|
348788
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348789
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348790
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348791
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348792
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
348793
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348794
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348795
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348796
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", "Description"], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348797
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task33"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348798
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348799
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348800
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348801
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348802
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348803
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348804
|
+
[1m[35m (0.4ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:43.474819' WHERE "tasks"."id" = 1
|
348805
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348806
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348807
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348808
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348809
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348810
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348812
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 2"}}], ["moderatable_id", 1], ["moderatable_type", "Task33"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348813
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348814
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
348815
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348816
|
+
[1m[35mTask33 Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348817
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348818
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "title" = 'Task 2', "updated_at" = '2012-10-14 14:31:43.545415' WHERE "tasks"."id" = 1
|
348819
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348820
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348821
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
348822
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348823
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
348824
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348825
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348826
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348827
|
+
[1m[36mTask34 Exists (0.2ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
348828
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1
|
348829
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348830
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task34"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348831
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348832
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348833
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
348834
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1
|
348835
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348836
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 2], ["moderatable_type", "Task34"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348837
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348838
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" LIMIT 1
|
348839
|
+
[1m[36mTask34 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348840
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348841
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 1) LIMIT 1[0m
|
348842
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 1) LIMIT 1
|
348843
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:43.596902' WHERE "tasks"."id" = 1[0m
|
348844
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348846
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348848
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348849
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
348850
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
348851
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" LIMIT 1[0m
|
348852
|
+
[1m[35mTask34 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 LIMIT 1
|
348853
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348854
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 2) LIMIT 1
|
348855
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
348856
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" LIMIT 1
|
348857
|
+
[1m[36mTask34 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 LIMIT 1[0m
|
348858
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348859
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 2) LIMIT 1[0m
|
348860
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
348861
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348862
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348863
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348864
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{:test=>"ok"}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task35"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348865
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348866
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348867
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348868
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348869
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348870
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task36"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348872
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348873
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348874
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348875
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348876
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348877
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348878
|
+
[1m[35mSQL (57.8ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348879
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348880
|
+
[1m[35mTask37 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348882
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:destroy=>true}], ["moderatable_id", 1], ["moderatable_type", "Task37"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348883
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348884
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348885
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348886
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348887
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348888
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348889
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348890
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>nil, "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task38"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348891
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348892
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348893
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348894
|
+
[1m[35m (0.0ms)[0m begin transaction
|
348895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348896
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348897
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", "Test!"], ["moderatable_id", 1], ["moderatable_type", "Task39"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348898
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348899
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
348900
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348901
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348902
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348903
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348904
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348905
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task40"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348906
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348907
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348908
|
+
[1m[35mTask40 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348909
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348910
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348911
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348912
|
+
[1m[35m (0.4ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:43.865955' WHERE "tasks"."id" = 1
|
348913
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348914
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
348915
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348916
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348917
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348918
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348919
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task41"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348920
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348921
|
+
[1m[36mTask41 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348922
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348923
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348924
|
+
[1m[35mTask41 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348925
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:43.904133' WHERE "tasks"."id" = 1[0m
|
348926
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348927
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
348928
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348930
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348931
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348932
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task42"], ["updated_at", Sun, 14 Oct 2012 14:31:43 UTC +00:00]]
|
348933
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348934
|
+
[1m[35mTask42 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348935
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348936
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348937
|
+
[1m[36mTask42 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348938
|
+
[1m[35m (0.3ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:43.942041' WHERE "tasks"."id" = 1
|
348939
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348940
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
348941
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
348942
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348943
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348944
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348945
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task43"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348946
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
348947
|
+
[1m[36mTask43 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
348948
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348949
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348950
|
+
[1m[35mTask43 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348951
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:44.038481' WHERE "tasks"."id" = 1[0m
|
348952
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348953
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
348954
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
348955
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348956
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348957
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348958
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task44"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348959
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348960
|
+
[1m[35mTask44 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
348961
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348962
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348964
|
+
[1m[35mTask44 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348965
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:31:44.077991' WHERE "tasks"."id" = 1[0m
|
348966
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
348967
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
348968
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
348969
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
348970
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348971
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348972
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348973
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348974
|
+
[1m[35mSQL (1.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task45"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348975
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348976
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
348977
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348978
|
+
[1m[35mTask45 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
348979
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348980
|
+
[1m[35mTask45 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
348981
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
348982
|
+
[1m[35mSubtask45 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
348983
|
+
[1m[36mTask45 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
348984
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
348985
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
348986
|
+
[1m[35m (0.1ms)[0m begin transaction
|
348987
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
348988
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348989
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
348990
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
348991
|
+
[1m[36mSQL (1.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["data", {:associations=>{:renamed_connections=>[{"id"=>nil, "title"=>"Connection 1", "m1_id"=>nil, "m2_id"=>nil, "created_at"=>nil, "updated_at"=>nil, :associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}]}}], ["moderatable_id", 1], ["moderatable_type", "Task46"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
348992
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348993
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
348994
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
348995
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
348996
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
348997
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
348998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
348999
|
+
[1m[36mTask46 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349000
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
349001
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", "Connection 1"], ["updated_at", Sun, 14 Oct 2012 14:31:44 UTC +00:00]]
|
349002
|
+
[1m[35mTask46 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349003
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349004
|
+
[1m[35mTaskConnection46 Load (0.1ms)[0m SELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m1_id" = 1
|
349005
|
+
[1m[36mTask46 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349006
|
+
[1m[35mSubtask46 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349007
|
+
[1m[36mTaskConnection46 Load (0.1ms)[0m [1mSELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m2_id" = 1[0m
|
349008
|
+
[1m[35mTask46 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" INNER JOIN "task_connections" ON "tasks"."id" = "task_connections"."m1_id" WHERE "task_connections"."m2_id" = 1
|
349009
|
+
[1m[36mSubtask46 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1[0m
|
349010
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
349011
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
349012
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349013
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349014
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349015
|
+
Connecting to database specified by database.yml
|
349016
|
+
[1m[36m (0.6ms)[0m [1mbegin transaction[0m
|
349017
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349018
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:16 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "avatar"=>nil, "picture"=>nil, "parentable_id"=>nil, "parentable_type"=>nil, "title"=>nil, "created_at"=>nil, "updated_at"=>nil, "avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1632-820-5959/test.jpg"}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Photo2"], ["updated_at", Sun, 14 Oct 2012 14:32:16 UTC +00:00]]
|
349019
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349020
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
349021
|
+
[1m[35mModeration Load (0.2ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349022
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349023
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349024
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349025
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349026
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349027
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349028
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349029
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349030
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
349031
|
+
[1m[35mPhoto2 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
349032
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
349033
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349034
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349035
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349036
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349037
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
349038
|
+
[1m[36mPhoto3 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
349039
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
349040
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
349041
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349042
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349043
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo4"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349044
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1632-820-6491/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo4"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349045
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349046
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
349047
|
+
[1m[35mPhoto4 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
349048
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349049
|
+
[1m[35mPhoto4 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
|
349050
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349051
|
+
[1m[35mPhoto4 Load (0.2ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
349052
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "photos" SET "avatar" = 'test.jpg', "updated_at" = '2012-10-14 14:32:17.191628' WHERE "photos"."id" = 1[0m
|
349053
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349055
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
349056
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349057
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
349058
|
+
[1m[36mPhoto4 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
349059
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
349060
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349061
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349062
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349063
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349064
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
349065
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" LIMIT 1
|
349066
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349067
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo5"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349068
|
+
[1m[36mPhoto5 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1[0m [["id", 1]]
|
349069
|
+
[1m[35m (0.1ms)[0m UPDATE "photos" SET "avatar" = NULL, "updated_at" = '2012-10-14 14:32:17.285868' WHERE "photos"."id" = 1
|
349070
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1632-820-2857/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo5"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349071
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349072
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349073
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = 1 LIMIT 1
|
349074
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349075
|
+
[1m[35mPhoto5 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."id" = ? LIMIT 1 [["id", 1]]
|
349076
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "photos" SET "avatar" = 'test.jpg', "updated_at" = '2012-10-14 14:32:17.302847' WHERE "photos"."id" = 1[0m
|
349077
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349078
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349079
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
349080
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349081
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
349082
|
+
[1m[36mPhoto5 Load (0.1ms)[0m [1mSELECT "photos".* FROM "photos" LIMIT 1[0m
|
349083
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
349084
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349085
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349086
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", nil], ["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["parentable_id", nil], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349087
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:attributes=>{"avatar"=>nil}}], ["moderatable_id", 1], ["moderatable_type", "Photo6"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349088
|
+
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:attributes=>{"avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1632-820-3843/test.jpg"}}], ["moderatable_id", 1], ["moderatable_type", "Photo6"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349089
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349090
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349091
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349092
|
+
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
349093
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349094
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349095
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349096
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349097
|
+
[1m[35mSQL (1.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:photos=>[{"id"=>nil, "avatar"=>nil, "picture"=>nil, "parentable_id"=>nil, "parentable_type"=>nil, "title"=>nil, "created_at"=>nil, "updated_at"=>nil, "avatar_tmp_file"=>"/Users/mrbrdo/rails/has_moderated/test/dummy/public/uploads/tmp/20121014-1632-820-9440/test.jpg"}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task7"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349098
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349099
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349100
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" [0m
|
349101
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349102
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349103
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349104
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349105
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349106
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "photos" ("avatar", "created_at", "parentable_id", "parentable_type", "picture", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["avatar", "test.jpg"], ["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["parentable_id", 1], ["parentable_type", nil], ["picture", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349107
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349108
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349109
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349110
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349111
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349112
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349113
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349114
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349115
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos" WHERE "photos"."parentable_id" = 1
|
349116
|
+
[1m[36mTask7 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349117
|
+
[1m[35mPhoto7 Load (0.1ms)[0m SELECT "photos".* FROM "photos" WHERE "photos"."parentable_id" = 1 LIMIT 1
|
349118
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349119
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349120
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349121
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task8"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349122
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349123
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349124
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
349125
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
349126
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349128
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349129
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349130
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349131
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349132
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349133
|
+
[1m[35mTask8 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349134
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349135
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349136
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349137
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349138
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349139
|
+
[1m[35mTask8 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349140
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "photos" WHERE "photos"."parentable_id" = 1[0m
|
349141
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "photos"
|
349142
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349143
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349144
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349145
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349146
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349147
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349148
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349149
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task9"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349150
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349151
|
+
[1m[35mTask9 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349152
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
349153
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349154
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349155
|
+
[1m[35mTask9 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349156
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349157
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349158
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349159
|
+
[1m[35mTask9 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349160
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349161
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349162
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349163
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349164
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349165
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349166
|
+
[1m[36mTask9 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349167
|
+
[1m[35mSubtask9 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349168
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349169
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349170
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349171
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349172
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349173
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349174
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349175
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task10"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349176
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349177
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349178
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349179
|
+
[1m[35mTask10 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349180
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
349181
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349182
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349183
|
+
[1m[35mTask10 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349184
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349185
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349186
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349187
|
+
[1m[35mTask10 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349188
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349189
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349190
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349191
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349192
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349193
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349194
|
+
[1m[36mTask10 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349195
|
+
[1m[35mSubtask10 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349196
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349197
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349198
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349199
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349200
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349201
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349202
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349203
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349204
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349205
|
+
[1m[35mSubtask11 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
349206
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349207
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task11"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349208
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349209
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349210
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
349211
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349212
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349213
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349214
|
+
[1m[36mSubtask11 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
349215
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349216
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:17.795358' WHERE "subtasks"."id" = 1[0m
|
349217
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349218
|
+
[1m[36mTask11 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349219
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349220
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349221
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349222
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349223
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349224
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349225
|
+
[1m[35mTask11 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349226
|
+
[1m[36mSubtask11 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349227
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349230
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349231
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349232
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349233
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349234
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349235
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349236
|
+
[1m[36mSubtask12 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349237
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349238
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task12"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349239
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349240
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349241
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
349242
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349243
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349244
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349245
|
+
[1m[35mSubtask12 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349246
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349247
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:17.858304' WHERE "subtasks"."id" = 1
|
349248
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349249
|
+
[1m[35mTask12 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349250
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349251
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349252
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349253
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349254
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349255
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349256
|
+
[1m[36mTask12 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349257
|
+
[1m[35mSubtask12 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349258
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349259
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349261
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349262
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349263
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349264
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task13"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349265
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349266
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349267
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349268
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349269
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349270
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349271
|
+
[1m[35mTask13 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349272
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349273
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349275
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349276
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349277
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
349278
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
349279
|
+
[1m[35mSubtask13 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 ORDER BY "subtasks"."id" DESC LIMIT 1
|
349280
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349281
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00], ["data", {:delete_associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task13"], ["updated_at", Sun, 14 Oct 2012 14:32:17 UTC +00:00]]
|
349282
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349283
|
+
[1m[35mTask13 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
349284
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1[0m
|
349285
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349286
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349287
|
+
[1m[35mSubtask13 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349288
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349289
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "subtasks" SET "task_id" = NULL WHERE "subtasks"."task_id" = 1 AND "subtasks"."id" IN (1)
|
349290
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349291
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349292
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349293
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349294
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
349295
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349296
|
+
[1m[36mTask13 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
349297
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
349298
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349299
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349300
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349301
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349302
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349303
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349304
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349305
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>1, "parentable_type"=>"Task14"}]}}], ["moderatable_id", 1], ["moderatable_type", "Task14"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349306
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349307
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349308
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task14'[0m
|
349309
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349310
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349311
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349312
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349313
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", 1], ["parentable_type", "Task14"], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349314
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349315
|
+
[1m[35mTask14 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349316
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349317
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349318
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349319
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349320
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349321
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349322
|
+
[1m[36mTask14 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349323
|
+
[1m[35mSubtask14 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task14' LIMIT 1
|
349324
|
+
[1m[36mTask14 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349325
|
+
[1m[35mTask14 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349326
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349327
|
+
[1m[35m (0.0ms)[0m begin transaction
|
349328
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349329
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349330
|
+
[1m[36mSubtask15 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1[0m
|
349331
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349332
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349333
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349334
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task15"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349335
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349336
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349337
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349338
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349339
|
+
[1m[35mSubtask15 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1
|
349340
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349341
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349342
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349344
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349345
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349346
|
+
[1m[36mSubtask15 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1[0m
|
349347
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349348
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "parentable_id" = 1, "parentable_type" = 'Task15', "updated_at" = '2012-10-14 14:32:18.101805' WHERE "subtasks"."id" = 1[0m
|
349349
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349350
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349351
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349352
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349353
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349354
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349355
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349356
|
+
[1m[36mTask15 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349357
|
+
[1m[35mSubtask15 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."parentable_id" = 1 AND "subtasks"."parentable_type" = 'Task15' LIMIT 1
|
349358
|
+
[1m[36mTask15 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349359
|
+
[1m[35mTask15 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349360
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349361
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349362
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349363
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349364
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349365
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349366
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349367
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task16"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349368
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349369
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349370
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349371
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
349372
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349373
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349374
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349375
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349376
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349377
|
+
[1m[35m (0.1ms)[0m INSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)
|
349378
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349379
|
+
[1m[35mTask16 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349380
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349381
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349383
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349384
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349385
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349386
|
+
[1m[36mTask16 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349387
|
+
[1m[35mSubtask16 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1
|
349388
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349389
|
+
[1m[35m (0.0ms)[0m begin transaction
|
349390
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349391
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349392
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349393
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349394
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349395
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349396
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349397
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
349398
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349399
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349400
|
+
[1m[36mSubtask17 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349401
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349402
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task17"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349403
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349404
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349405
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349406
|
+
[1m[36mTask17 Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349407
|
+
[1m[35mSubtask17 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349408
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349409
|
+
[1m[35m (0.1ms)[0m INSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)
|
349410
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349411
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349412
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349413
|
+
[1m[35mTask17 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349415
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349416
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349417
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349418
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349419
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349420
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349421
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1
|
349422
|
+
[1m[36mTask17 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349423
|
+
[1m[35mSubtask17 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1
|
349424
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349425
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349426
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349427
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349428
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349429
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349430
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349431
|
+
[1m[35mSubtask18 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
349432
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349433
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task18"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349434
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349435
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349436
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349437
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349438
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349439
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349440
|
+
[1m[36mSubtask18 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
349441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349442
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)[0m
|
349443
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349444
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349445
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349446
|
+
[1m[36mTask18 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349447
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349448
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349449
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349450
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349451
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349452
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349453
|
+
[1m[35mTask18 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349454
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1[0m
|
349455
|
+
[1m[35mTask18 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349456
|
+
[1m[36mSubtask18 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1[0m
|
349457
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349458
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349459
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349460
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349461
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349462
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349463
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349464
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349465
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349466
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task19"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349467
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349468
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
349469
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349470
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349471
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349472
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349473
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349474
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
349475
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349476
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "tasks_jointable" ("m2_id", "m1_id") VALUES (1, 1)[0m
|
349477
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349478
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349479
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349480
|
+
[1m[36mTask19 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349481
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349482
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349483
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349484
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349485
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349486
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349487
|
+
[1m[35mTask19 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
349488
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1[0m
|
349489
|
+
[1m[35mTask19 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349490
|
+
[1m[36mSubtask19 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "tasks_jointable" ON "subtasks"."id" = "tasks_jointable"."m2_id" WHERE "tasks_jointable"."m1_id" = 1 LIMIT 1[0m
|
349491
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349493
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349494
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349495
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349496
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349497
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349498
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_connections=>[{"id"=>nil, "title"=>"Connection 1", "m1_id"=>nil, "m2_id"=>nil, "created_at"=>nil, "updated_at"=>nil, :associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}]}}], ["moderatable_id", 1], ["moderatable_type", "Task20"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349499
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349500
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349501
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349502
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
349503
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349504
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349505
|
+
[1m[35mTask20 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349506
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349507
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349508
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349509
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349510
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", "Connection 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349511
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349512
|
+
[1m[36mTask20 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349513
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349514
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349515
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349516
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349517
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349518
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349519
|
+
[1m[35mTask20 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349520
|
+
[1m[36mSubtask20 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1[0m
|
349521
|
+
[1m[35mSubtask20 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" LIMIT 1
|
349522
|
+
[1m[36mTaskConnection20 Load (0.1ms)[0m [1mSELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m2_id" = 1 LIMIT 1[0m
|
349523
|
+
[1m[35mSubtask20 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349524
|
+
[1m[36mTask20 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349525
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349527
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349528
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349529
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349530
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349531
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349532
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task21"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349533
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349535
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349536
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "task_connections" [0m
|
349537
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349538
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349539
|
+
[1m[35mTask21 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349540
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349541
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349542
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349543
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349544
|
+
[1m[36mTask21 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349545
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349546
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349547
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349548
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349549
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349550
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349551
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349552
|
+
[1m[36mTask21 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349553
|
+
[1m[35mSubtask21 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1
|
349554
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
349555
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349557
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349558
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349559
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349560
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349561
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task22"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349562
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349563
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "task_connections"
|
349564
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349565
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349566
|
+
[1m[36mTask22 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349567
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349568
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349569
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349570
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349571
|
+
[1m[35mTask22 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
349572
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349573
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349574
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349575
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349576
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349577
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349578
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349579
|
+
[1m[35mTask22 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349580
|
+
[1m[36mSubtask22 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1[0m
|
349581
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349583
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349584
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349585
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task23"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349586
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349587
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks"
|
349588
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349589
|
+
[1m[35mTask23 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349590
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1[0m
|
349591
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349592
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349593
|
+
[1m[35mTask23 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349594
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349595
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:18 UTC +00:00]]
|
349596
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349597
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349598
|
+
[1m[36mTask23 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349599
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349600
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349601
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349602
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349603
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349604
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349605
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1
|
349606
|
+
[1m[36mTask23 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349607
|
+
[1m[35mSubtask23 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1 LIMIT 1
|
349608
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349609
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349610
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349611
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349612
|
+
[1m[36mSubtask24 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349613
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349614
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349615
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349616
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task24"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349617
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349618
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349619
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349620
|
+
[1m[36mTask24 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349621
|
+
[1m[35mSubtask24 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349622
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349623
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349624
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349625
|
+
[1m[35mTask24 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349626
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349627
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349628
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349629
|
+
[1m[35mSubtask24 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349630
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349631
|
+
[1m[35m (0.1ms)[0m UPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:19.068351' WHERE "subtasks"."id" = 1
|
349632
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349633
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349634
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349635
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349636
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349637
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349638
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349639
|
+
[1m[35mTask24 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349640
|
+
[1m[36mSubtask24 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349641
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349643
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349644
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349645
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349646
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349647
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349648
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349649
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349650
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349651
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349652
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task25"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349653
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349654
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349655
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349656
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349657
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349658
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349659
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349660
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349661
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349662
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349663
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349664
|
+
[1m[36mSubtask25 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349665
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349666
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:19.130069' WHERE "subtasks"."id" = 1[0m
|
349667
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349668
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349669
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349670
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349671
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349672
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349673
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349674
|
+
[1m[36mTask25 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349675
|
+
[1m[35mSubtask25 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349676
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349677
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349678
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349679
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349680
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349681
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349682
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349683
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task26"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349684
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349686
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349687
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349688
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349689
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349690
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349691
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349692
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349693
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349694
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:19.242111' WHERE "subtasks"."id" = 1[0m
|
349695
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349696
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349697
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349698
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349699
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349700
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349701
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349702
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349703
|
+
[1m[35mSubtask26 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349704
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349705
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349706
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:delete_associations=>{:renamed_subtask=>[1]}}], ["moderatable_id", 1], ["moderatable_type", "Task26"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349707
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349708
|
+
[1m[36mTask26 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349709
|
+
[1m[35mSubtask26 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349710
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349711
|
+
[1m[35mTask26 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349712
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349713
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349714
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = NULL, "updated_at" = '2012-10-14 14:32:19.257920' WHERE "subtasks"."id" = 1[0m
|
349715
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349716
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349717
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349718
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349719
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349720
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349721
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 2]]
|
349722
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349723
|
+
[1m[35mTask26 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349724
|
+
[1m[36mSubtask26 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349725
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
349726
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349727
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349728
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349729
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349730
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349731
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349732
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349733
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349734
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349735
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349736
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtask=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task27"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349737
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349738
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349739
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349740
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349741
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349742
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349743
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349744
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349745
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349746
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
349747
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349748
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349749
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349750
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:19.316523' WHERE "subtasks"."id" = 1[0m
|
349751
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349752
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349753
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349754
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349755
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349756
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349757
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349758
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349759
|
+
[1m[35mTask27 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349760
|
+
[1m[36mSubtask27 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349761
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349763
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349764
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349765
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349766
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349767
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349768
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349769
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349770
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349771
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349772
|
+
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtask=>[1]}}}], ["moderatable_id", nil], ["moderatable_type", "Task28"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349773
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349774
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349775
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349776
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349777
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349778
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349779
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349780
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349781
|
+
[1m[35mSubtask28 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1
|
349782
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349783
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349784
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349786
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "subtasks" SET "task_id" = 1, "updated_at" = '2012-10-14 14:32:19.375288' WHERE "subtasks"."id" = 1[0m
|
349787
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349788
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349789
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349791
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349792
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349793
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
349794
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" LIMIT 1[0m
|
349795
|
+
[1m[35mTask28 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349796
|
+
[1m[36mSubtask28 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1[0m
|
349797
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349798
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349799
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349800
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{}}}], ["moderatable_id", nil], ["moderatable_type", "Task29"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349801
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349802
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349803
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349804
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349805
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349806
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349807
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349808
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349809
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349810
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349811
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349812
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349813
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349814
|
+
[1m[36mTask29 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349815
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349817
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349818
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}}], ["moderatable_id", nil], ["moderatable_type", "Task30"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349819
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349820
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
349821
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349822
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349823
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349824
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349825
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349826
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349827
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349828
|
+
[1m[36mTask30 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
349829
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349830
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349831
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349832
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349833
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349834
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
349835
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
349836
|
+
[1m[36mTask30 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
349837
|
+
[1m[35mSubtask30 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1 LIMIT 1
|
349838
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349839
|
+
[1m[35m (0.0ms)[0m begin transaction
|
349840
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349841
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>{}}}], ["moderatable_id", nil], ["moderatable_type", "Task31"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349842
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349843
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349845
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349846
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349847
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349848
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349849
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349850
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349851
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349852
|
+
[1m[36mTask31 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349853
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
349854
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349855
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349856
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349857
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349858
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349859
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349860
|
+
[1m[36mTask32 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349861
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349862
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:destroy=>true}], ["moderatable_id", 1], ["moderatable_type", "Task32"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349863
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349864
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "tasks" [0m
|
349865
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349866
|
+
[1m[36mTask32 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349867
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349868
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" WHERE "moderations"."moderatable_id" = 1 AND "moderations"."moderatable_type" = 'Task32'[0m
|
349869
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349870
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "tasks" WHERE "tasks"."id" = ?[0m [["id", 1]]
|
349871
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349872
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349873
|
+
[1m[35mSQL (0.0ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349874
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349875
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "tasks"
|
349876
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349877
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349878
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349879
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", "Description"], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349880
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task33"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349881
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349882
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349883
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349884
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349885
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349886
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349887
|
+
[1m[35m (0.3ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:19.643454' WHERE "tasks"."id" = 1
|
349888
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349889
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349890
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349891
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349892
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349893
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349894
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349895
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 2"}}], ["moderatable_id", 1], ["moderatable_type", "Task33"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349896
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349897
|
+
[1m[35mTask33 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" LIMIT 1
|
349898
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349899
|
+
[1m[35mTask33 Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
349900
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349901
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "title" = 'Task 2', "updated_at" = '2012-10-14 14:32:19.712354' WHERE "tasks"."id" = 1
|
349902
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349903
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349904
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 2]]
|
349905
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349906
|
+
[1m[36mTask33 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" LIMIT 1[0m
|
349907
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
349908
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
349909
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349910
|
+
[1m[36mTask34 Exists (0.2ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
349911
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1
|
349912
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349913
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task34"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349914
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349916
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
349917
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1
|
349918
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349919
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 2], ["moderatable_type", "Task34"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349920
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349921
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" LIMIT 1
|
349922
|
+
[1m[36mTask34 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349923
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
349924
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 1) LIMIT 1[0m
|
349925
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 1) LIMIT 1
|
349926
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:19.764106' WHERE "tasks"."id" = 1[0m
|
349927
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
349928
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349929
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
349930
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349932
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE "tasks"."title" = 'Task 1' LIMIT 1[0m
|
349933
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
349934
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" LIMIT 1[0m
|
349935
|
+
[1m[35mTask34 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 LIMIT 1
|
349936
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349937
|
+
[1m[35mTask34 Exists (0.1ms)[0m SELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 2) LIMIT 1
|
349938
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
349939
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" LIMIT 1
|
349940
|
+
[1m[36mTask34 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 2 LIMIT 1[0m
|
349941
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349942
|
+
[1m[36mTask34 Exists (0.1ms)[0m [1mSELECT 1 FROM "tasks" WHERE ("tasks"."title" = 'Task 1' AND "tasks"."id" != 2) LIMIT 1[0m
|
349943
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
349944
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
349945
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349946
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349947
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{:test=>"ok"}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task35"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349948
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349949
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349950
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349951
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349952
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349953
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>"Task 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task36"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349954
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349955
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349956
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349957
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349958
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349959
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349960
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349961
|
+
[1m[35mSQL (57.4ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349962
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349963
|
+
[1m[35mTask37 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
349964
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
349965
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:destroy=>true}], ["moderatable_id", 1], ["moderatable_type", "Task37"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349966
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349967
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349968
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349969
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349970
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349971
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349972
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349973
|
+
[1m[35mSQL (1.1ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", {:create=>{:attributes=>{"id"=>nil, "title"=>nil, "desc"=>nil, "created_at"=>nil, "updated_at"=>nil}, :associations=>nil}}], ["moderatable_id", nil], ["moderatable_type", "Task38"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349974
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349975
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349976
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349977
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349978
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349979
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349980
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00], ["data", "Test!"], ["moderatable_id", 1], ["moderatable_type", "Task39"], ["updated_at", Sun, 14 Oct 2012 14:32:19 UTC +00:00]]
|
349981
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349982
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "moderations" [0m
|
349983
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
349984
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
349985
|
+
[1m[35m (0.1ms)[0m begin transaction
|
349986
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
349987
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
349988
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task40"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
349989
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
349990
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
349991
|
+
[1m[35mTask40 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
349992
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
349993
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
349994
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
349995
|
+
[1m[35m (0.3ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:20.031054' WHERE "tasks"."id" = 1
|
349996
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
349997
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
349998
|
+
[1m[36mTask40 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
349999
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
350000
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
350001
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
350002
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350003
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task41"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350004
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350005
|
+
[1m[35mTask41 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
350006
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
350007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
350008
|
+
[1m[36mTask41 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
350009
|
+
[1m[35m (0.3ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:20.069056' WHERE "tasks"."id" = 1
|
350010
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
350011
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
350012
|
+
[1m[36mTask41 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
350013
|
+
[1m[35mTask41 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
350014
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
350015
|
+
[1m[35m (0.1ms)[0m begin transaction
|
350016
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
350017
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350018
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task42"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350019
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
350020
|
+
[1m[36mTask42 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
350021
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
350022
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350023
|
+
[1m[35mTask42 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
350024
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:20.106928' WHERE "tasks"."id" = 1[0m
|
350025
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
350026
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
350027
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
350028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
350029
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
350030
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350031
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task43"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350032
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350033
|
+
[1m[35mTask43 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
350034
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
350035
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
350036
|
+
[1m[36mTask43 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
350037
|
+
[1m[35m (0.4ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:20.203890' WHERE "tasks"."id" = 1
|
350038
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
350039
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
350040
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350041
|
+
[1m[35m (0.1ms)[0m UPDATE "moderations" SET "data" = '---
|
350042
|
+
:attributes:
|
350043
|
+
title: Task 2
|
350044
|
+
', "updated_at" = '2012-10-14 14:32:20.207744' WHERE "moderations"."id" = 1
|
350045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350046
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
350047
|
+
[1m[36mTask43 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
350048
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
350049
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "tasks" SET "title" = 'Task 2', "updated_at" = '2012-10-14 14:32:20.214584' WHERE "tasks"."id" = 1[0m
|
350050
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
350051
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350052
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
350053
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350054
|
+
[1m[35mTask43 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1
|
350055
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
350056
|
+
[1m[35m (0.1ms)[0m begin transaction
|
350057
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
350058
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", nil], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350059
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:attributes=>{"title"=>"Task 1"}}], ["moderatable_id", 1], ["moderatable_type", "Task44"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350060
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
350061
|
+
[1m[36mTask44 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
350062
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
350063
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
350064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
350065
|
+
[1m[36mTask44 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
350066
|
+
[1m[35m (0.3ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:20.251916' WHERE "tasks"."id" = 1
|
350067
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
350068
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
350069
|
+
[1m[36mModeration Load (0.1ms)[0m [1mSELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1[0m
|
350070
|
+
[1m[35mTask44 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
350071
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350072
|
+
[1m[35m (0.1ms)[0m UPDATE "tasks" SET "title" = 'Task 1', "updated_at" = '2012-10-14 14:32:20.260540' WHERE "tasks"."id" = 1
|
350073
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350074
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
350075
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
350076
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
350077
|
+
[1m[36mTask44 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
350078
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
350079
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
350080
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
350081
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350082
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
350083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350084
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:associations=>{:renamed_subtasks=>[{"id"=>nil, "task_id"=>1, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}], ["moderatable_id", 1], ["moderatable_type", "Task45"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350085
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350086
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
350087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350088
|
+
[1m[35mTask45 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
350089
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", 1], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350090
|
+
[1m[35mTask45 Load (0.0ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1 [["id", 1]]
|
350091
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "moderations" WHERE "moderations"."id" = ?[0m [["id", 1]]
|
350092
|
+
[1m[35mSubtask45 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
350093
|
+
[1m[36mTask45 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1[0m
|
350094
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
350095
|
+
[1m[36mTask45 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT 1[0m
|
350096
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "subtasks" WHERE "subtasks"."task_id" = 1
|
350097
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
350098
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
350099
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
350100
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
350101
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "tasks" ("created_at", "desc", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["title", "Task 1"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350102
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
350103
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
350104
|
+
[1m[35mSQL (1.5ms)[0m INSERT INTO "moderations" ("created_at", "data", "moderatable_id", "moderatable_type", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["data", {:associations=>{:renamed_connections=>[{"id"=>nil, "title"=>"Connection 1", "m1_id"=>nil, "m2_id"=>nil, "created_at"=>nil, "updated_at"=>nil, :associations=>{:renamed_subtask=>[{"id"=>nil, "task_id"=>nil, "title"=>"Subtask 1", "desc"=>nil, "created_at"=>nil, "updated_at"=>nil, "parentable_id"=>nil, "parentable_type"=>nil}]}}]}}], ["moderatable_id", 1], ["moderatable_type", "Task46"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350105
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350106
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
350107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350108
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "task_connections"
|
350109
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
350110
|
+
[1m[35mModeration Load (0.1ms)[0m SELECT "moderations".* FROM "moderations" ORDER BY "moderations"."id" DESC LIMIT 1
|
350111
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
350112
|
+
[1m[35mTask46 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
350113
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "subtasks" ("created_at", "desc", "parentable_id", "parentable_type", "task_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["desc", nil], ["parentable_id", nil], ["parentable_type", nil], ["task_id", nil], ["title", "Subtask 1"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350114
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "task_connections" ("created_at", "m1_id", "m2_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00], ["m1_id", 1], ["m2_id", 1], ["title", "Connection 1"], ["updated_at", Sun, 14 Oct 2012 14:32:20 UTC +00:00]]
|
350115
|
+
[1m[36mTask46 Load (0.0ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT 1[0m [["id", 1]]
|
350116
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "moderations" WHERE "moderations"."id" = ? [["id", 1]]
|
350117
|
+
[1m[36mTaskConnection46 Load (0.1ms)[0m [1mSELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m1_id" = 1[0m
|
350118
|
+
[1m[35mTask46 Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 1 LIMIT 1
|
350119
|
+
[1m[36mSubtask46 Load (0.1ms)[0m [1mSELECT "subtasks".* FROM "subtasks" WHERE "subtasks"."id" = 1 LIMIT 1[0m
|
350120
|
+
[1m[35mTaskConnection46 Load (0.1ms)[0m SELECT "task_connections".* FROM "task_connections" WHERE "task_connections"."m2_id" = 1
|
350121
|
+
[1m[36mTask46 Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" INNER JOIN "task_connections" ON "tasks"."id" = "task_connections"."m1_id" WHERE "task_connections"."m2_id" = 1[0m
|
350122
|
+
[1m[35mSubtask46 Load (0.1ms)[0m SELECT "subtasks".* FROM "subtasks" INNER JOIN "task_connections" ON "subtasks"."id" = "task_connections"."m2_id" WHERE "task_connections"."m1_id" = 1
|
350123
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
350124
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "task_connections"
|
350125
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "subtasks" [0m
|
350126
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "moderations"
|
350127
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|