marks 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +1 -0
- data/Rakefile +37 -0
- data/app/models/marks/mark.rb +8 -0
- data/db/migrate/20121116121923_create_marks_marks.rb +11 -0
- data/lib/marks.rb +13 -0
- data/lib/marks/engine.rb +5 -0
- data/lib/marks/markable.rb +22 -0
- data/lib/marks/marker.rb +31 -0
- data/lib/marks/version.rb +3 -0
- data/lib/tasks/marks_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/reply.rb +3 -0
- data/test/dummy/app/models/user.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20121116121913_create_users.rb +7 -0
- data/test/dummy/db/migrate/20121116121922_create_replies.rb +7 -0
- data/test/dummy/db/schema.rb +36 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +179 -0
- data/test/dummy/log/test.log +1102 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/marks_test.rb +22 -0
- data/test/test_helper.rb +15 -0
- metadata +173 -0
Binary file
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended to check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(:version => 20121116121923) do
|
15
|
+
|
16
|
+
create_table "marks_marks", :force => true do |t|
|
17
|
+
t.integer "marker_id"
|
18
|
+
t.string "marker_type"
|
19
|
+
t.integer "markable_id"
|
20
|
+
t.string "markable_type"
|
21
|
+
t.string "type"
|
22
|
+
t.datetime "created_at", :null => false
|
23
|
+
t.datetime "updated_at", :null => false
|
24
|
+
end
|
25
|
+
|
26
|
+
create_table "replies", :force => true do |t|
|
27
|
+
t.datetime "created_at", :null => false
|
28
|
+
t.datetime "updated_at", :null => false
|
29
|
+
end
|
30
|
+
|
31
|
+
create_table "users", :force => true do |t|
|
32
|
+
t.datetime "created_at", :null => false
|
33
|
+
t.datetime "updated_at", :null => false
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
File without changes
|
@@ -0,0 +1,179 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
5
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
6
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
7
|
+
[1m[35m (1.0ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
8
|
+
Migrating to CreateUsers (20121116121913)
|
9
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
11
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121913')[0m
|
12
|
+
[1m[35m (0.8ms)[0m commit transaction
|
13
|
+
Migrating to CreateReplies (20121116121922)
|
14
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
15
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
16
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121922')[0m
|
17
|
+
[1m[35m (0.9ms)[0m commit transaction
|
18
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
19
|
+
Connecting to database specified by database.yml
|
20
|
+
[1m[36m (0.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
21
|
+
Migrating to CreateUsers (20121116121913)
|
22
|
+
Migrating to CreateReplies (20121116121922)
|
23
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
24
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
25
|
+
Connecting to database specified by database.yml
|
26
|
+
[1m[36m (0.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
27
|
+
Migrating to CreateUsers (20121116121913)
|
28
|
+
Migrating to CreateReplies (20121116121922)
|
29
|
+
Migrating to CreateMarksMarks (20121116122448)
|
30
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
31
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
33
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116122448')[0m
|
34
|
+
[1m[35m (2.5ms)[0m commit transaction
|
35
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
36
|
+
Connecting to database specified by database.yml
|
37
|
+
[1m[36m (0.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
38
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
39
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
40
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
41
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
42
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
43
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
44
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
45
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116122448')[0m
|
46
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
|
47
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121922')[0m
|
48
|
+
Connecting to database specified by database.yml
|
49
|
+
Connecting to database specified by database.yml
|
50
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
51
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
52
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
53
|
+
[1m[35m (1.0ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
54
|
+
Migrating to CreateUsers (20121116121913)
|
55
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
57
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121913')[0m
|
58
|
+
[1m[35m (0.9ms)[0m commit transaction
|
59
|
+
Migrating to CreateReplies (20121116121922)
|
60
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
61
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
62
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121922')[0m
|
63
|
+
[1m[35m (0.8ms)[0m commit transaction
|
64
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
65
|
+
Connecting to database specified by database.yml
|
66
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM schema_migrations[0m
|
67
|
+
Connecting to database specified by database.yml
|
68
|
+
[1m[36m (0.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
69
|
+
Migrating to CreateUsers (20121116121913)
|
70
|
+
Migrating to CreateReplies (20121116121922)
|
71
|
+
Migrating to CreateMarksMarks (20121116123958)
|
72
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
73
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
74
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
75
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116123958')[0m
|
76
|
+
[1m[35m (2.4ms)[0m commit transaction
|
77
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
78
|
+
Connecting to database specified by database.yml
|
79
|
+
[1m[36m (0.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
80
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
81
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
82
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
83
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
84
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
85
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
86
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
87
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116123958')[0m
|
88
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
|
89
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121922')[0m
|
90
|
+
Connecting to database specified by database.yml
|
91
|
+
[1m[36m (1.6ms)[0m [1mselect sqlite_version(*)[0m
|
92
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
93
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
94
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
95
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
96
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
97
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
98
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116123958')
|
99
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121913')[0m
|
100
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
|
101
|
+
Connecting to database specified by database.yml
|
102
|
+
[1m[36m (1.2ms)[0m [1mselect sqlite_version(*)[0m
|
103
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
104
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
105
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
106
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
107
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
108
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
109
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116123958')
|
110
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121913')[0m
|
111
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
|
112
|
+
Connecting to database specified by database.yml
|
113
|
+
[1m[36m (1.5ms)[0m [1mselect sqlite_version(*)[0m
|
114
|
+
[1m[35m (1.2ms)[0m DROP TABLE "marks_marks"
|
115
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
116
|
+
[1m[35m (1.1ms)[0m DROP TABLE "replies"
|
117
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
118
|
+
[1m[35m (0.9ms)[0m DROP TABLE "users"
|
119
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
120
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
121
|
+
[1m[36m (4.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
122
|
+
Connecting to database specified by database.yml
|
123
|
+
Connecting to database specified by database.yml
|
124
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
125
|
+
[1m[35m (2.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
126
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
127
|
+
Connecting to database specified by database.yml
|
128
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
129
|
+
Migrating to CreateUsers (20121116121913)
|
130
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
131
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
132
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
133
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121913')[0m
|
134
|
+
[1m[35m (0.6ms)[0m commit transaction
|
135
|
+
Migrating to CreateReplies (20121116121922)
|
136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
137
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
138
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121922')[0m
|
139
|
+
[1m[35m (0.7ms)[0m commit transaction
|
140
|
+
Migrating to CreateMarksMarks (20121116121923)
|
141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
142
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
143
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20121116121923')[0m
|
144
|
+
[1m[35m (0.6ms)[0m commit transaction
|
145
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
146
|
+
Connecting to database specified by database.yml
|
147
|
+
[1m[36m (1.4ms)[0m [1mselect sqlite_version(*)[0m
|
148
|
+
[1m[35m (2.7ms)[0m DROP TABLE "marks_marks"
|
149
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
150
|
+
[1m[35m (1.0ms)[0m DROP TABLE "replies"
|
151
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
152
|
+
[1m[35m (1.0ms)[0m DROP TABLE "users"
|
153
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
154
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
155
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
156
|
+
Connecting to database specified by database.yml
|
157
|
+
[1m[36m (1.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
158
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
159
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
160
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
161
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
162
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
163
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
164
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
165
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121923')[0m
|
166
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121913')
|
167
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121922')[0m
|
168
|
+
Connecting to database specified by database.yml
|
169
|
+
[1m[36m (1.2ms)[0m [1mselect sqlite_version(*)[0m
|
170
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "marks_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "marker_id" integer, "marker_type" varchar(255), "markable_id" integer, "markable_type" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
171
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "replies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
172
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
173
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
174
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
175
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
176
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121923')
|
177
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20121116121913')[0m
|
178
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121116121922')
|
179
|
+
[1m[36m (1.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
@@ -0,0 +1,1102 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
9
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
10
|
+
Connecting to database specified by database.yml
|
11
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13
|
+
Connecting to database specified by database.yml
|
14
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16
|
+
Connecting to database specified by database.yml
|
17
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
18
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
19
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00]]
|
20
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
21
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
22
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:09 UTC +00:00]]
|
23
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
25
|
+
Connecting to database specified by database.yml
|
26
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
27
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
28
|
+
[1m[36mSQL (7.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00]]
|
29
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
30
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
31
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:27:46 UTC +00:00]]
|
32
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
33
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
34
|
+
Connecting to database specified by database.yml
|
35
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
36
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
37
|
+
[1m[36mSQL (7.0ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00]]
|
38
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
39
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
40
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:28:53 UTC +00:00]]
|
41
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
42
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
43
|
+
Connecting to database specified by database.yml
|
44
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
45
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
46
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00]]
|
47
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
48
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
49
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:22 UTC +00:00]]
|
50
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
51
|
+
[1m[35m (1.6ms)[0m rollback transaction
|
52
|
+
Connecting to database specified by database.yml
|
53
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
54
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
55
|
+
[1m[36mSQL (6.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00]]
|
56
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
57
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
58
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:29:42 UTC +00:00]]
|
59
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
60
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
61
|
+
Connecting to database specified by database.yml
|
62
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
63
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
64
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00]]
|
65
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
66
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
67
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:30:14 UTC +00:00]]
|
68
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
69
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
70
|
+
Connecting to database specified by database.yml
|
71
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
72
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
73
|
+
[1m[36mSQL (6.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00]]
|
74
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
75
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
76
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:34:15 UTC +00:00]]
|
77
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
78
|
+
[1m[35m (1.4ms)[0m rollback transaction
|
79
|
+
Connecting to database specified by database.yml
|
80
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
81
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
82
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00]]
|
83
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
84
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
85
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:35:35 UTC +00:00]]
|
86
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
87
|
+
[1m[35m (2.0ms)[0m rollback transaction
|
88
|
+
Connecting to database specified by database.yml
|
89
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
90
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
91
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00]]
|
92
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
93
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
94
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:36:57 UTC +00:00]]
|
95
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
96
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
97
|
+
Connecting to database specified by database.yml
|
98
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
99
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
100
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00]]
|
101
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
102
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
103
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:37:19 UTC +00:00]]
|
104
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
105
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
106
|
+
Connecting to database specified by database.yml
|
107
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
108
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
109
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00]]
|
110
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
111
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
112
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:38:21 UTC +00:00]]
|
113
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
114
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
115
|
+
Connecting to database specified by database.yml
|
116
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
117
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
118
|
+
[1m[36mSQL (5.8ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:40:23 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:23 UTC +00:00]]
|
119
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
120
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
121
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:40:24 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:24 UTC +00:00]]
|
122
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
123
|
+
[1m[35mMarks::Mark Exists (0.1ms)[0m SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
|
124
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
125
|
+
Connecting to database specified by database.yml
|
126
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
128
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00]]
|
129
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
130
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
131
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00]]
|
132
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
133
|
+
[1m[35mMarks::Mark Exists (0.2ms)[0m SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
|
134
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
135
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Fri, 16 Nov 2012 12:40:55 UTC +00:00]]
|
136
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
137
|
+
[1m[35mMarks::Mark Exists (0.1ms)[0m SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
|
138
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
139
|
+
Connecting to database specified by database.yml
|
140
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
141
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
142
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
|
143
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
144
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
145
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
|
146
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
147
|
+
[1m[35mMarks::Mark Exists (0.2ms)[0m SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Cheerup' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
|
148
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
149
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Cheerup"], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
|
150
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
151
|
+
[1m[35mMarks::Mark Exists (0.1ms)[0m SELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Cheerup' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1
|
152
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
153
|
+
[1m[35m (0.1ms)[0m begin transaction
|
154
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
155
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
|
156
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
157
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
158
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
|
159
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
160
|
+
[1m[36mMarks::Mark Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1[0m
|
161
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
162
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Fri, 16 Nov 2012 12:42:16 UTC +00:00]]
|
163
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
164
|
+
[1m[36mMarks::Mark Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1 LIMIT 1[0m
|
165
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
166
|
+
Connecting to database specified by database.yml
|
167
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
168
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
169
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00]]
|
170
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
171
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
172
|
+
[1m[35mSQL (28.7ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:26 UTC +00:00]]
|
173
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
174
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
175
|
+
Connecting to database specified by database.yml
|
176
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
177
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
178
|
+
[1m[36mSQL (6.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00]]
|
179
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
180
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
181
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:49:57 UTC +00:00]]
|
182
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
183
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
184
|
+
Connecting to database specified by database.yml
|
185
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
186
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
187
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00]]
|
188
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
189
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
190
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:50:44 UTC +00:00]]
|
191
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
192
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
193
|
+
Connecting to database specified by database.yml
|
194
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
195
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
196
|
+
[1m[36mSQL (6.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00]]
|
197
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
198
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
199
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:01 UTC +00:00]]
|
200
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
201
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
202
|
+
Connecting to database specified by database.yml
|
203
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
204
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
205
|
+
[1m[36mSQL (6.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00]]
|
206
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
207
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
208
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:31 UTC +00:00]]
|
209
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
210
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
211
|
+
Connecting to database specified by database.yml
|
212
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
213
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
214
|
+
[1m[36mSQL (5.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00]]
|
215
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
216
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
217
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:51:56 UTC +00:00]]
|
218
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
219
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
220
|
+
Connecting to database specified by database.yml
|
221
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
223
|
+
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00]]
|
224
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
225
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
226
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:52:18 UTC +00:00]]
|
227
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
228
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
229
|
+
Connecting to database specified by database.yml
|
230
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
231
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
232
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00]]
|
233
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
234
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
235
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:31 UTC +00:00]]
|
236
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
237
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
238
|
+
Connecting to database specified by database.yml
|
239
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
241
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00]]
|
242
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
243
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
244
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:54:52 UTC +00:00]]
|
245
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
246
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
247
|
+
Connecting to database specified by database.yml
|
248
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
249
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
250
|
+
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00]]
|
251
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
252
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
253
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:08 UTC +00:00]]
|
254
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
255
|
+
[1m[35m (1.9ms)[0m rollback transaction
|
256
|
+
Connecting to database specified by database.yml
|
257
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
258
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
259
|
+
[1m[36mSQL (5.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00]]
|
260
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
261
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
262
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:55:51 UTC +00:00]]
|
263
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
264
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
265
|
+
Connecting to database specified by database.yml
|
266
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
268
|
+
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00]]
|
269
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
270
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
271
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:56:47 UTC +00:00]]
|
272
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
273
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
274
|
+
Connecting to database specified by database.yml
|
275
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
276
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
277
|
+
[1m[36mSQL (5.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00]]
|
278
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
279
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
280
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:34 UTC +00:00]]
|
281
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
282
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
283
|
+
Connecting to database specified by database.yml
|
284
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
285
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
286
|
+
[1m[36mSQL (5.7ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00]]
|
287
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
288
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
289
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:57:53 UTC +00:00]]
|
290
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
291
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
292
|
+
Connecting to database specified by database.yml
|
293
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
295
|
+
[1m[36mSQL (7.0ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00]]
|
296
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
297
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
298
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:21 UTC +00:00]]
|
299
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
300
|
+
[1m[35m (1.7ms)[0m rollback transaction
|
301
|
+
Connecting to database specified by database.yml
|
302
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
303
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
304
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00]]
|
305
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
306
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
307
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:58:34 UTC +00:00]]
|
308
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
309
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
310
|
+
Connecting to database specified by database.yml
|
311
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
312
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
313
|
+
[1m[36mSQL (6.8ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00]]
|
314
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
315
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
316
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 12:59:40 UTC +00:00]]
|
317
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
318
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
319
|
+
Connecting to database specified by database.yml
|
320
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
321
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
322
|
+
[1m[36mSQL (6.9ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00]]
|
323
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
324
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
325
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:00:45 UTC +00:00]]
|
326
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
327
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
|
328
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
329
|
+
Connecting to database specified by database.yml
|
330
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
331
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
332
|
+
[1m[36mSQL (6.8ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00]]
|
333
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
334
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
335
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00]]
|
336
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
337
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
338
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Fri, 16 Nov 2012 13:01:23 UTC +00:00]]
|
339
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
340
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
341
|
+
Connecting to database specified by database.yml
|
342
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
344
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00]]
|
345
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
346
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
347
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:01:50 UTC +00:00]]
|
348
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
349
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
350
|
+
Connecting to database specified by database.yml
|
351
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
352
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
353
|
+
[1m[36mSQL (6.7ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00]]
|
354
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
355
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
356
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:04:54 UTC +00:00]]
|
357
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
358
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
359
|
+
Connecting to database specified by database.yml
|
360
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
361
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
362
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00]]
|
363
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
364
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
365
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00], ["updated_at", Fri, 16 Nov 2012 13:05:31 UTC +00:00]]
|
366
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
367
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
368
|
+
Connecting to database specified by database.yml
|
369
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
370
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
371
|
+
[1m[36mSQL (5.9ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
|
372
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
373
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
374
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
|
375
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
376
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
377
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
378
|
+
[1m[35m (0.2ms)[0m begin transaction
|
379
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
380
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
|
381
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
382
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
383
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 01:58:33 UTC +00:00]]
|
384
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
385
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
386
|
+
Connecting to database specified by database.yml
|
387
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
388
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
389
|
+
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
|
390
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
391
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
392
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
|
393
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
394
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
395
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
396
|
+
[1m[35m (0.1ms)[0m begin transaction
|
397
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
398
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
|
399
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
400
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
401
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:06 UTC +00:00]]
|
402
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
403
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
404
|
+
Connecting to database specified by database.yml
|
405
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
406
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
407
|
+
[1m[36mSQL (5.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00]]
|
408
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
409
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
410
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:26:19 UTC +00:00]]
|
411
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
412
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
413
|
+
Connecting to database specified by database.yml
|
414
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
415
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
416
|
+
[1m[36mSQL (6.9ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
|
417
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
418
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
419
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
|
420
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
421
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
422
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
423
|
+
[1m[35m (0.1ms)[0m begin transaction
|
424
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
425
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
|
426
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
427
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
428
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:40 UTC +00:00]]
|
429
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
430
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
431
|
+
Connecting to database specified by database.yml
|
432
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
433
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
434
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
|
435
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
436
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
437
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
|
438
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
439
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
440
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
441
|
+
[1m[35m (0.1ms)[0m begin transaction
|
442
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
443
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
|
444
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
445
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
446
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:30:54 UTC +00:00]]
|
447
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
448
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
449
|
+
Connecting to database specified by database.yml
|
450
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
451
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
452
|
+
[1m[36mSQL (6.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
|
453
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
454
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
455
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
|
456
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
457
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
458
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
459
|
+
[1m[35m (0.1ms)[0m begin transaction
|
460
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
461
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
|
462
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
463
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
464
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:33:17 UTC +00:00]]
|
465
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
466
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
467
|
+
Connecting to database specified by database.yml
|
468
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
469
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
470
|
+
[1m[36mSQL (6.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
|
471
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
472
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
473
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
|
474
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
475
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
476
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
477
|
+
[1m[35m (0.1ms)[0m begin transaction
|
478
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
479
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
|
480
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
481
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
482
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:35 UTC +00:00]]
|
483
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
484
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
485
|
+
Connecting to database specified by database.yml
|
486
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
487
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
488
|
+
[1m[36mSQL (7.7ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
|
489
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
490
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
491
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
|
492
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
493
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
494
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
495
|
+
[1m[35m (0.1ms)[0m begin transaction
|
496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
497
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
|
498
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
499
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
500
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:34:58 UTC +00:00]]
|
501
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
502
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
503
|
+
Connecting to database specified by database.yml
|
504
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
505
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
506
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
|
507
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
508
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
509
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
|
510
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
511
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
512
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
513
|
+
[1m[35m (0.1ms)[0m begin transaction
|
514
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
515
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
|
516
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
518
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:39:03 UTC +00:00]]
|
519
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
520
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
521
|
+
Connecting to database specified by database.yml
|
522
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
523
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
524
|
+
[1m[36mSQL (6.7ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
|
525
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
526
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
527
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
|
528
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
529
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
530
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
531
|
+
[1m[35m (0.1ms)[0m begin transaction
|
532
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
533
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
|
534
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
535
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
536
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:41 UTC +00:00]]
|
537
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
538
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
539
|
+
Connecting to database specified by database.yml
|
540
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
541
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
542
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
|
543
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
544
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
545
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
|
546
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
547
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
548
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
549
|
+
[1m[35m (0.1ms)[0m begin transaction
|
550
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
551
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
|
552
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
553
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
554
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:41:57 UTC +00:00]]
|
555
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
556
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
557
|
+
Connecting to database specified by database.yml
|
558
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
559
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
560
|
+
[1m[36mSQL (5.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
|
561
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
562
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
563
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
|
564
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
565
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
566
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
567
|
+
[1m[35m (0.1ms)[0m begin transaction
|
568
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
569
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
|
570
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
572
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 02:42:27 UTC +00:00]]
|
573
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
574
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
575
|
+
Connecting to database specified by database.yml
|
576
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
577
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
578
|
+
[1m[36mSQL (10.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
|
579
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
580
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
581
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
|
582
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
583
|
+
[1m[35m (0.4ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
584
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
585
|
+
[1m[35m (0.1ms)[0m begin transaction
|
586
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
587
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
|
588
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
589
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
590
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:10:37 UTC +00:00]]
|
591
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
592
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
593
|
+
Connecting to database specified by database.yml
|
594
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
595
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
596
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
|
597
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
598
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
599
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
|
600
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
601
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
602
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
603
|
+
[1m[35m (0.1ms)[0m begin transaction
|
604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
605
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
|
606
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
607
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
608
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:14:43 UTC +00:00]]
|
609
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
610
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
611
|
+
Connecting to database specified by database.yml
|
612
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
613
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
614
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
|
615
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
616
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
617
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
|
618
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
619
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
620
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
621
|
+
[1m[35m (0.1ms)[0m begin transaction
|
622
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
623
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
|
624
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
625
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
626
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:15:07 UTC +00:00]]
|
627
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
628
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
629
|
+
Connecting to database specified by database.yml
|
630
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
632
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
|
633
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
634
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
635
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
|
636
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
637
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
638
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
639
|
+
[1m[35m (0.1ms)[0m begin transaction
|
640
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
641
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
|
642
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
643
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
644
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:16:51 UTC +00:00]]
|
645
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
646
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
647
|
+
Connecting to database specified by database.yml
|
648
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
649
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
650
|
+
[1m[36mSQL (6.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
|
651
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
652
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
653
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
|
654
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
655
|
+
[1m[35m (1.8ms)[0m rollback transaction
|
656
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
657
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
658
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
|
659
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
660
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
661
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:17:04 UTC +00:00]]
|
662
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
663
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
|
664
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
665
|
+
Connecting to database specified by database.yml
|
666
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
667
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
668
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
|
669
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
670
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
671
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
|
672
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
673
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
674
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
675
|
+
[1m[35m (0.1ms)[0m begin transaction
|
676
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
677
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
|
678
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
679
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
680
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:22:45 UTC +00:00]]
|
681
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
682
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
683
|
+
Connecting to database specified by database.yml
|
684
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
686
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
|
687
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
688
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
689
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
|
690
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
691
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
692
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
693
|
+
[1m[35m (0.1ms)[0m begin transaction
|
694
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
695
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
|
696
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
697
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
698
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:25:50 UTC +00:00]]
|
699
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
700
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
701
|
+
Connecting to database specified by database.yml
|
702
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
703
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
704
|
+
[1m[36mSQL (4.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
|
705
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
706
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
707
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
|
708
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
709
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
710
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
711
|
+
[1m[35m (0.1ms)[0m begin transaction
|
712
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
713
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
|
714
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
715
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
716
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:26 UTC +00:00]]
|
717
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
718
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
719
|
+
Connecting to database specified by database.yml
|
720
|
+
[1m[36m (0.8ms)[0m [1mbegin transaction[0m
|
721
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
722
|
+
[1m[36mSQL (5.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
|
723
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
724
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
725
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
|
726
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
727
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
728
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
729
|
+
[1m[35m (0.1ms)[0m begin transaction
|
730
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
731
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
|
732
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
733
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
734
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:26:44 UTC +00:00]]
|
735
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
736
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
737
|
+
Connecting to database specified by database.yml
|
738
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
739
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
740
|
+
[1m[36mSQL (7.0ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:27:18 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:18 UTC +00:00]]
|
741
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
742
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
743
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00]]
|
744
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
745
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
746
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
747
|
+
[1m[35m (0.1ms)[0m begin transaction
|
748
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
749
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00]]
|
750
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
751
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
752
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:19 UTC +00:00]]
|
753
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
754
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
755
|
+
Connecting to database specified by database.yml
|
756
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
757
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
758
|
+
[1m[36mSQL (6.0ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
|
759
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
760
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
761
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
|
762
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
763
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
764
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
765
|
+
[1m[35m (0.1ms)[0m begin transaction
|
766
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
767
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
|
768
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
769
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
770
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:27:38 UTC +00:00]]
|
771
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
772
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
773
|
+
Connecting to database specified by database.yml
|
774
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
776
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
|
777
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
778
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
779
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
|
780
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
781
|
+
[1m[35m (1.5ms)[0m rollback transaction
|
782
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
783
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
784
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
|
785
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
786
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
787
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:10 UTC +00:00]]
|
788
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
789
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
|
790
|
+
[1m[36m (1.3ms)[0m [1mrollback transaction[0m
|
791
|
+
Connecting to database specified by database.yml
|
792
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
793
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
794
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
|
795
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
796
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
797
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
|
798
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
799
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
800
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
801
|
+
[1m[35m (0.1ms)[0m begin transaction
|
802
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
803
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
|
804
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
805
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
806
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:31:35 UTC +00:00]]
|
807
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
808
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
809
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
810
|
+
Connecting to database specified by database.yml
|
811
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
812
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
813
|
+
[1m[36mSQL (7.0ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
|
814
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
815
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
816
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
|
817
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
818
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
819
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
820
|
+
[1m[35m (0.0ms)[0m begin transaction
|
821
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
822
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
|
823
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
824
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
825
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:37:14 UTC +00:00]]
|
826
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
827
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
828
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
829
|
+
Connecting to database specified by database.yml
|
830
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
831
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
832
|
+
[1m[36mSQL (6.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
|
833
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
834
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
835
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
|
836
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
837
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
838
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
839
|
+
[1m[35m (0.1ms)[0m begin transaction
|
840
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
841
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
|
842
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
843
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
844
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:38:17 UTC +00:00]]
|
845
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
846
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
847
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
848
|
+
Connecting to database specified by database.yml
|
849
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
850
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
851
|
+
[1m[36mSQL (5.1ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
|
852
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
853
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
854
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
|
855
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
856
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
857
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
858
|
+
[1m[35m (0.1ms)[0m begin transaction
|
859
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
860
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
|
861
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
862
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
863
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:16 UTC +00:00]]
|
864
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
865
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
866
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
867
|
+
Connecting to database specified by database.yml
|
868
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
869
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
870
|
+
[1m[36mSQL (4.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
|
871
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
872
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
873
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
|
874
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
875
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
876
|
+
[1m[36m (1.8ms)[0m [1mrollback transaction[0m
|
877
|
+
[1m[35m (0.1ms)[0m begin transaction
|
878
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
879
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
|
880
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
881
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
882
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
|
883
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
884
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
885
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
886
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:39:35 UTC +00:00]]
|
887
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
888
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
889
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
890
|
+
Connecting to database specified by database.yml
|
891
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
892
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
893
|
+
[1m[36mSQL (5.9ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
|
894
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
896
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
|
897
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
898
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
899
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
900
|
+
[1m[35m (0.1ms)[0m begin transaction
|
901
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
902
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
|
903
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
904
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
905
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
|
906
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
907
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
908
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
909
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:40:46 UTC +00:00]]
|
910
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
911
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
912
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
913
|
+
Connecting to database specified by database.yml
|
914
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
915
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
916
|
+
[1m[36mSQL (6.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
|
917
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
918
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
919
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
|
920
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
921
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
922
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
923
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
|
924
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
925
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
926
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
927
|
+
[1m[35m (0.1ms)[0m begin transaction
|
928
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
929
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
|
930
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
932
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
|
933
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
934
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
935
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
936
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:40:54 UTC +00:00]]
|
937
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
938
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
939
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
940
|
+
Connecting to database specified by database.yml
|
941
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
942
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
943
|
+
[1m[36mSQL (6.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
|
944
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
945
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
946
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
|
947
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
948
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
949
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
950
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
|
951
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
952
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
953
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
954
|
+
[1m[35m (0.1ms)[0m begin transaction
|
955
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
956
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
|
957
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
958
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
959
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
|
960
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
961
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
962
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
963
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:05 UTC +00:00]]
|
964
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
965
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
966
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
967
|
+
Connecting to database specified by database.yml
|
968
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
969
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
970
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
|
971
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
972
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
973
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
|
974
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
975
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
976
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
977
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
|
978
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
979
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
980
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
981
|
+
[1m[35m (0.1ms)[0m begin transaction
|
982
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
983
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
|
984
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
985
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
986
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
|
987
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
988
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
989
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
990
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:42:20 UTC +00:00]]
|
991
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
992
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
993
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
994
|
+
Connecting to database specified by database.yml
|
995
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
996
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
997
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
998
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
999
|
+
Connecting to database specified by database.yml
|
1000
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1001
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1002
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1003
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1004
|
+
Connecting to database specified by database.yml
|
1005
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1006
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1007
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1008
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1009
|
+
Connecting to database specified by database.yml
|
1010
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1011
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1012
|
+
[1m[36mSQL (7.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
|
1013
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1014
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1015
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
|
1016
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1017
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
1018
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1019
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
|
1020
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1021
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
1022
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1023
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1024
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1025
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
|
1026
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1027
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1028
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
|
1029
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1030
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
1031
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1032
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 03:59:13 UTC +00:00]]
|
1033
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1034
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
1035
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1036
|
+
Connecting to database specified by database.yml
|
1037
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1038
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1039
|
+
[1m[36mSQL (10.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1040
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1041
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1042
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1043
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1044
|
+
[1m[35m (0.5ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
1045
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1046
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1047
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1048
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1049
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1050
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1051
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1052
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1053
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1054
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
1055
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1056
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1057
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1058
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1059
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1060
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1061
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1062
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1063
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
1064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1065
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:24 UTC +00:00]]
|
1066
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1067
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1[0m
|
1068
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1069
|
+
Connecting to database specified by database.yml
|
1070
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1071
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1072
|
+
[1m[36mSQL (5.2ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1073
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1074
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1075
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1076
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1077
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
1078
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1079
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1080
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1082
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1083
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1084
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1085
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1086
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1087
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)
|
1088
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" INNER JOIN "marks_marks" ON "marks_marks"."marker_id" = "users"."id" AND "marks_marks"."marker_type" = 'User' WHERE (marks_marks.type = 'Nice' AND markable_type = 'Reply' AND markable_id = 1)[0m
|
1089
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1090
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1091
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1092
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1093
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1094
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1095
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "replies" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1096
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1097
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
|
1098
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1099
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "marks_marks" ("created_at", "markable_id", "markable_type", "marker_id", "marker_type", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00], ["markable_id", 1], ["markable_type", "Reply"], ["marker_id", 1], ["marker_type", "User"], ["type", "Nice"], ["updated_at", Sat, 17 Nov 2012 07:22:58 UTC +00:00]]
|
1100
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1101
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "marks_marks" WHERE "marks_marks"."marker_id" = 1 AND "marks_marks"."marker_type" = 'User' AND "marks_marks"."type" = 'Nice' AND "marks_marks"."markable_type" = 'Reply' AND "marks_marks"."markable_id" = 1
|
1102
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|