diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index ac7265c..1ad268d 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -14,6 +14,7 @@ //= require jquery_ujs //= require_tree . +// Code does not go here, if it does nothing remove it. $('document').ready(function(){ $('#comment_for_answer').on('submit', function(event){ event.preventDefault(); diff --git a/app/assets/javascripts/comments.js b/app/assets/javascripts/comments.js index cad5c2c..b2019c2 100644 --- a/app/assets/javascripts/comments.js +++ b/app/assets/javascripts/comments.js @@ -1,3 +1,4 @@ +// Remove it if it doesn't do anything // $('document').ready(function(){ // $('.comment_for_answer').on("submit", function(event) { // event.preventDefault(); diff --git a/app/assets/javascripts/votes.js b/app/assets/javascripts/votes.js index 085ea4d..7992edc 100644 --- a/app/assets/javascripts/votes.js +++ b/app/assets/javascripts/votes.js @@ -1,9 +1,11 @@ +// Nice work $(document).ready(function () { $('.questionvote').on('submit', function(event){ event.preventDefault(); var $data = $(event.target).serialize(); var $voteCount = $(event.target).closest('.questionvote').find('#questionvotecount'); $.ajax({ + // Url should probably be POST /votes url: '/questionvotes', method: 'POST', data: $data diff --git a/app/controllers/answers_controller.rb b/app/controllers/answers_controller.rb index 22f34f6..b6154bc 100644 --- a/app/controllers/answers_controller.rb +++ b/app/controllers/answers_controller.rb @@ -4,6 +4,7 @@ def create user = User.find_by(id: session[:user_id]) @answer = Answer.create(answer_params) @answer.update_attributes(user_id: user.id) + # Didnt you store param[:answer] in answer_params (see 2 lines up) question = Question.find_by(id: params[:answer][:question_id]) redirect_to question_path(question.id) end diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb index e34cb25..296ad46 100644 --- a/app/controllers/comments_controller.rb +++ b/app/controllers/comments_controller.rb @@ -11,6 +11,8 @@ def new @answer_id = params["answer_id"] end + # See Wed. night lecture comments. We can clean this up by extracting + # private methods to help clean things up. def create @comment = Comment.new(comment_params) if comment_params[:commentable_type] == "question" diff --git a/app/controllers/votes_controller.rb b/app/controllers/votes_controller.rb index d5b1f14..b033de0 100644 --- a/app/controllers/votes_controller.rb +++ b/app/controllers/votes_controller.rb @@ -1,4 +1,7 @@ class VotesController < ApplicationController + # Seems like we could clean this up a good bit. Nevertheless, I like your + # creation of helper methods such as the misspelled + # user_previosly_voted_differently, etc. def questionvotes question = Question.find_by(id: params[:question_id]) if user_has_made_this_vote(question, params[:question_id]) @@ -50,6 +53,8 @@ def answervotes def user_has_made_this_vote(questionoranswer, upvote) vote = questionoranswer.votes.find_by(user_id: current_user.id) + # The return value of vote && (vote.upvote? == upvote) is true false, you + # don't need to explicitly return it. return true if vote && vote.upvote? == upvote end diff --git a/db/migrate/20150708234013_create_tags.rb b/db/migrate/20150708234013_create_tags.rb index 965cd7a..4f253ad 100644 --- a/db/migrate/20150708234013_create_tags.rb +++ b/db/migrate/20150708234013_create_tags.rb @@ -1,6 +1,7 @@ class CreateTags < ActiveRecord::Migration def change create_table :tags do |t| + # That's probably not nullable... t.string :name t.timestamps null: false diff --git a/db/schema.rb b/db/schema.rb index ef3c90c..bdb3e41 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -96,7 +96,6 @@ add_index "votes", ["user_id"], name: "index_votes_on_user_id", using: :btree add_index "votes", ["votable_type", "votable_id"], name: "index_votes_on_votable_type_and_votable_id", using: :btree - add_foreign_key "answers", "users" add_foreign_key "comments", "users" add_foreign_key "favorite_questions", "questions" add_foreign_key "favorite_questions", "users" diff --git a/log/development.log b/log/development.log index f110606..06f9801 100644 --- a/log/development.log +++ b/log/development.log @@ -2617,3 +2617,2789 @@ Processing by VotesController#answervotes as */*  (0.1ms) SELECT COUNT(*) FROM "votes" WHERE "votes"."votable_id" = $1 AND "votes"."votable_type" = $2 AND "votes"."upvote?" = 'f' [["votable_id", 62], ["votable_type", "Answer"]] Rendered text template (0.0ms) Completed 200 OK in 16ms (Views: 0.4ms | ActiveRecord: 3.3ms) +  (21.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)  +  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to CreateUsers (20150708233230) +  (0.2ms) BEGIN +  (23.4ms) CREATE TABLE "users" ("id" serial primary key, "username" character varying NOT NULL, "password_digest" character varying NOT NULL, "reputation" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  + SQL (6.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708233230"]] +  (6.1ms) COMMIT +Migrating to CreateVotes (20150708233357) +  (11.8ms) BEGIN +  (14.1ms) CREATE TABLE "votes" ("id" serial primary key, "user_id" integer, "votable_id" integer, "votable_type" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (0.9ms) CREATE INDEX "index_votes_on_user_id" ON "votes" ("user_id") +  (0.9ms) CREATE INDEX "index_votes_on_votable_type_and_votable_id" ON "votes" ("votable_type", "votable_id") +  (2.3ms) ALTER TABLE "votes" ADD CONSTRAINT "fk_rails_c9b3bef597" +FOREIGN KEY ("user_id") + REFERENCES "users" ("id") + + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708233357"]] +  (0.9ms) COMMIT +Migrating to CreateAnswers (20150708233423) +  (5.5ms) BEGIN +  (14.3ms) CREATE TABLE "answers" ("id" serial primary key, "body" text NOT NULL, "question_id" integer, "user_id" integer, "best" boolean DEFAULT 'f' NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (1.2ms) CREATE INDEX "index_answers_on_question_id" ON "answers" ("question_id") +  (0.9ms) CREATE INDEX "index_answers_on_user_id" ON "answers" ("user_id") + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708233423"]] +  (0.4ms) COMMIT +Migrating to CreateQuestions (20150708233647) +  (6.1ms) BEGIN +  (18.7ms) CREATE TABLE "questions" ("id" serial primary key, "title" character varying NOT NULL, "body" text NOT NULL, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (2.0ms) CREATE INDEX "index_questions_on_user_id" ON "questions" ("user_id") +  (1.0ms) ALTER TABLE "questions" ADD CONSTRAINT "fk_rails_047ab75908" +FOREIGN KEY ("user_id") + REFERENCES "users" ("id") + + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708233647"]] +  (0.5ms) COMMIT +Migrating to CreateComments (20150708233937) +  (6.2ms) BEGIN +  (43.5ms) CREATE TABLE "comments" ("id" serial primary key, "body" text NOT NULL, "user_id" integer, "commentable_id" integer, "commentable_type" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (6.1ms) CREATE INDEX "index_comments_on_user_id" ON "comments" ("user_id") +  (1.8ms) CREATE INDEX "index_comments_on_commentable_type_and_commentable_id" ON "comments" ("commentable_type", "commentable_id") +  (2.3ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_03de2dc08c" +FOREIGN KEY ("user_id") + REFERENCES "users" ("id") + + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708233937"]] +  (0.5ms) COMMIT +Migrating to CreateTags (20150708234013) +  (5.4ms) BEGIN +  (18.4ms) CREATE TABLE "tags" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708234013"]] +  (0.4ms) COMMIT +Migrating to CreateQuestionTags (20150708234118) +  (6.2ms) BEGIN +  (8.0ms) CREATE TABLE "question_tags" ("id" serial primary key, "question_id" integer, "tag_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (11.5ms) CREATE INDEX "index_question_tags_on_question_id" ON "question_tags" ("question_id") +  (0.9ms) CREATE INDEX "index_question_tags_on_tag_id" ON "question_tags" ("tag_id") + SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708234118"]] +  (0.4ms) COMMIT +Migrating to CreateFavoriteQuestions (20150708234352) +  (6.0ms) BEGIN +  (8.9ms) CREATE TABLE "favorite_questions" ("id" serial primary key, "user_id" integer, "question_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)  +  (6.0ms) CREATE INDEX "index_favorite_questions_on_user_id" ON "favorite_questions" ("user_id") +  (1.1ms) CREATE INDEX "index_favorite_questions_on_question_id" ON "favorite_questions" ("question_id") +  (0.9ms) ALTER TABLE "favorite_questions" ADD CONSTRAINT "fk_rails_e62014131d" +FOREIGN KEY ("user_id") + REFERENCES "users" ("id") + +  (1.0ms) ALTER TABLE "favorite_questions" ADD CONSTRAINT "fk_rails_fb2ab44c03" +FOREIGN KEY ("question_id") + REFERENCES "questions" ("id") + + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150708234352"]] +  (0.5ms) COMMIT +Migrating to AddUpvoteToVotes (20150711171437) +  (6.4ms) BEGIN +  (0.4ms) ALTER TABLE "votes" ADD "upvote?" boolean + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150711171437"]] +  (7.7ms) COMMIT + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (2.3ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'answers' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (2.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'comments' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (2.1ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'favorite_questions' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (2.0ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'question_tags' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (2.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'questions' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'tags' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (1.7ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'users' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + +  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete +FROM pg_constraint c +JOIN pg_class t1 ON c.conrelid = t1.oid +JOIN pg_class t2 ON c.confrelid = t2.oid +JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid +JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid +JOIN pg_namespace t3 ON c.connamespace = t3.oid +WHERE c.contype = 'f' + AND t1.relname = 'votes' + AND t3.nspname = ANY (current_schemas(false)) +ORDER BY c.conname + + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +  (0.1ms) BEGIN + User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kylee Rutherford' LIMIT 1 + SQL (6.3ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kylee Rutherford"], ["password_digest", "$2a$10$L41Z9HG/UoORSQfrflw8ye7GGbfyFXyfrtZdRDFz1nAyznt2kSGb."], ["reputation", 853], ["created_at", "2015-07-16 20:46:17.300797"], ["updated_at", "2015-07-16 20:46:17.300797"]] +  (5.8ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Susana Olson' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Susana Olson"], ["password_digest", "$2a$10$sIc.PZQGtkFycJsUnkBa4ORiRXnh1h6gTCGG2ACueiZTHVWfC9nXa"], ["reputation", 342], ["created_at", "2015-07-16 20:46:17.396512"], ["updated_at", "2015-07-16 20:46:17.396512"]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Emelia Graham' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Emelia Graham"], ["password_digest", "$2a$10$rmC7GW.T6ofboG5CVu5CjuuGQnnX.tuo7GVLe5FZPdUYdahBFTALu"], ["reputation", 229], ["created_at", "2015-07-16 20:46:17.479789"], ["updated_at", "2015-07-16 20:46:17.479789"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Isabella Padberg' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Isabella Padberg"], ["password_digest", "$2a$10$g874ZXKQAFI5HZ02JBpz1OM..wCR.eP6TmQ1sgdtxaqgL6dxzOz4C"], ["reputation", 557], ["created_at", "2015-07-16 20:46:17.561788"], ["updated_at", "2015-07-16 20:46:17.561788"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Haven Donnelly' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Haven Donnelly"], ["password_digest", "$2a$10$8px/0j1sI61r9xFiyd1DUOAHh1h.25Vv3PYa0ElDrkLPvxMSbXxkO"], ["reputation", 548], ["created_at", "2015-07-16 20:46:17.644457"], ["updated_at", "2015-07-16 20:46:17.644457"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dr. Hunter Koepp' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dr. Hunter Koepp"], ["password_digest", "$2a$10$F8d4uzJk4pvxTRyyoVxdMuiT8nvlGmwzLN3h4GOd9/41aCxdJWgc6"], ["reputation", 708], ["created_at", "2015-07-16 20:46:17.729227"], ["updated_at", "2015-07-16 20:46:17.729227"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ora Turcotte' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ora Turcotte"], ["password_digest", "$2a$10$DhJFV2GIg3dPtmJiBgtPmutK8e/.vfULtSP024tKcXUW8nKNV1gmO"], ["reputation", 242], ["created_at", "2015-07-16 20:46:17.809551"], ["updated_at", "2015-07-16 20:46:17.809551"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Benny Fadel' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Benny Fadel"], ["password_digest", "$2a$10$g/RzeHfEmCi0kbuBQQ.HE.vuNPGSGZaERpXu285i1gQ9MBvejg5Ca"], ["reputation", 16], ["created_at", "2015-07-16 20:46:17.890544"], ["updated_at", "2015-07-16 20:46:17.890544"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Abbie Haag' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Abbie Haag"], ["password_digest", "$2a$10$UwjcGwDGlMRAf0V4tC9tp.yogZsonxbyzQPiGb4DOiRGC/.GVweYi"], ["reputation", 585], ["created_at", "2015-07-16 20:46:17.972634"], ["updated_at", "2015-07-16 20:46:17.972634"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Melisa Bergnaum' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Melisa Bergnaum"], ["password_digest", "$2a$10$E0tkZAdRksKuVMNtkkRlUei42/Vn7ukFjuTPSA66de1ovkSoVvOJm"], ["reputation", 163], ["created_at", "2015-07-16 20:46:18.056060"], ["updated_at", "2015-07-16 20:46:18.056060"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ms. Albin Schulist' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ms. Albin Schulist"], ["password_digest", "$2a$10$feF1CTFy4w.4/dOSXXi7BOJOlZZdZh2PpzkgsfNgaJqPHE4yZm9t."], ["reputation", 730], ["created_at", "2015-07-16 20:46:18.137111"], ["updated_at", "2015-07-16 20:46:18.137111"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kathlyn Connelly' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kathlyn Connelly"], ["password_digest", "$2a$10$f4II78uvXA8WQ.HezpVpH.BWzTblVNgPjXfaflc4VZ9UglmxN2DLy"], ["reputation", 537], ["created_at", "2015-07-16 20:46:18.229672"], ["updated_at", "2015-07-16 20:46:18.229672"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Napoleon Crooks' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Napoleon Crooks"], ["password_digest", "$2a$10$tskq74oGz28LqpS8/jQ7OeybVP2MnSIZGhYm57nZW.XsaCttmZVeG"], ["reputation", 338], ["created_at", "2015-07-16 20:46:18.311942"], ["updated_at", "2015-07-16 20:46:18.311942"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Summer Kohler' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Summer Kohler"], ["password_digest", "$2a$10$Afhwv0jnxDL4yBMUGeUtUupGKLg.5mrvIsh4zY7.MGq1bj4QjqYfS"], ["reputation", 576], ["created_at", "2015-07-16 20:46:18.404587"], ["updated_at", "2015-07-16 20:46:18.404587"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ian Okuneva' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ian Okuneva"], ["password_digest", "$2a$10$37WXqJPqH.ZMEtym9LS4EuNyWT9k0KKFPqZu9CVpGMDT/XJTiRXOy"], ["reputation", 973], ["created_at", "2015-07-16 20:46:18.489731"], ["updated_at", "2015-07-16 20:46:18.489731"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Darrin Kreiger II' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Darrin Kreiger II"], ["password_digest", "$2a$10$/FEqU90TlFcoN72v0tZaRel7Z.rKvfgfoigHRi0ug6t50sJaWsH7C"], ["reputation", 422], ["created_at", "2015-07-16 20:46:18.572876"], ["updated_at", "2015-07-16 20:46:18.572876"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Guadalupe Steuber DVM' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Guadalupe Steuber DVM"], ["password_digest", "$2a$10$Gk4xqNbMAM3NL8oaqFr3DOlJXMN2Kk0AWqh.Ii0hBxZI013g6nbp."], ["reputation", 281], ["created_at", "2015-07-16 20:46:18.661686"], ["updated_at", "2015-07-16 20:46:18.661686"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ellen Miller' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ellen Miller"], ["password_digest", "$2a$10$tCYuqThaXzFKFuT5jJw5FejfZ5ZA2QB.mt9cIHc25FJ7DJOqWnEcC"], ["reputation", 630], ["created_at", "2015-07-16 20:46:18.748925"], ["updated_at", "2015-07-16 20:46:18.748925"]] +  (0.4ms) COMMIT +  (0.3ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ms. Dwight Gleason' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ms. Dwight Gleason"], ["password_digest", "$2a$10$/W2IGjRaKhydYnbQAir3o.PbjxITph1XqWo94V0MlXs0n7vholkyW"], ["reputation", 511], ["created_at", "2015-07-16 20:46:18.833861"], ["updated_at", "2015-07-16 20:46:18.833861"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Gussie Ritchie I' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Gussie Ritchie I"], ["password_digest", "$2a$10$E4soZf0P8TJFDyAw8lBdEOmePAqfCSnBX8kld1W29JRjmJX2DQyIe"], ["reputation", 830], ["created_at", "2015-07-16 20:46:18.925010"], ["updated_at", "2015-07-16 20:46:18.925010"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Rosalind Wolf' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Rosalind Wolf"], ["password_digest", "$2a$10$QKXEXLKBe78br2X9.uxUl.d2SMdfmFIrr10fe.FvBmXF4XRZjiUKK"], ["reputation", 375], ["created_at", "2015-07-16 20:46:19.010525"], ["updated_at", "2015-07-16 20:46:19.010525"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Oral Wilkinson' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Oral Wilkinson"], ["password_digest", "$2a$10$bet5Zhn6Enjk1HFC3kfwXOlanm8xTNKTcCoTMbJUl8TSID6K9RefS"], ["reputation", 311], ["created_at", "2015-07-16 20:46:19.095775"], ["updated_at", "2015-07-16 20:46:19.095775"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Pamela Jacobs' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Pamela Jacobs"], ["password_digest", "$2a$10$ZVOqyYWsMXzTFuDre.9f.uXdi6X5GfZiwn7cIex44gU2AtX8wllFC"], ["reputation", 567], ["created_at", "2015-07-16 20:46:19.183457"], ["updated_at", "2015-07-16 20:46:19.183457"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Miss Rylan Dare' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Miss Rylan Dare"], ["password_digest", "$2a$10$yzfaY2MT095Tt1D8yv.XN.yy28KcERwsl6X9le9SRCZml3lrXK3ZK"], ["reputation", 876], ["created_at", "2015-07-16 20:46:19.272865"], ["updated_at", "2015-07-16 20:46:19.272865"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kenton Ryan' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kenton Ryan"], ["password_digest", "$2a$10$tOJrGYQ7azuZH5c/I/pTTOXg3omRSD2omNl6cjFjRETxItAYrL9oS"], ["reputation", 799], ["created_at", "2015-07-16 20:46:19.360979"], ["updated_at", "2015-07-16 20:46:19.360979"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Lauryn Baumbach' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Lauryn Baumbach"], ["password_digest", "$2a$10$FgMBDjMasu.FeEsSIRyaaOwYJ29oLUXoqVRVUBAzPR3OfOZz5Ue8e"], ["reputation", 519], ["created_at", "2015-07-16 20:46:19.447378"], ["updated_at", "2015-07-16 20:46:19.447378"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kaitlyn Shanahan' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kaitlyn Shanahan"], ["password_digest", "$2a$10$KwviSKMegkLYiUdU5YKIv.8MITHvh9jZMeou9ep5ZQOJtFVpMZkl."], ["reputation", 738], ["created_at", "2015-07-16 20:46:19.531373"], ["updated_at", "2015-07-16 20:46:19.531373"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Mr. Bertrand Altenwerth' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Mr. Bertrand Altenwerth"], ["password_digest", "$2a$10$zo8VkXsLBIqj5DmMtDHZfO28LyXf6bilzSijxH2Slj7eW43BGwnEm"], ["reputation", 83], ["created_at", "2015-07-16 20:46:19.617939"], ["updated_at", "2015-07-16 20:46:19.617939"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kaelyn O''Connell' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kaelyn O'Connell"], ["password_digest", "$2a$10$Fhx39rlDpQRUgjGyHkWAm.dz5MhGbZQfB9w2qMgZoYZwdcfMGvX6K"], ["reputation", 768], ["created_at", "2015-07-16 20:46:19.708901"], ["updated_at", "2015-07-16 20:46:19.708901"]] +  (0.6ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Joy Donnelly' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Joy Donnelly"], ["password_digest", "$2a$10$18gxt3GObWoL33U4oX33lODFAR77tyZT25eIQBvg0hbUwv1ih7RBe"], ["reputation", 719], ["created_at", "2015-07-16 20:46:19.795359"], ["updated_at", "2015-07-16 20:46:19.795359"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Mr. Kailey Herman' LIMIT 1 + SQL (0.5ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Mr. Kailey Herman"], ["password_digest", "$2a$10$A3YI0u8U7yueP7N5qCMuiuDiz08KCZ0TZ9W2INBwqGxgVSIbKoSo6"], ["reputation", 40], ["created_at", "2015-07-16 20:46:19.878684"], ["updated_at", "2015-07-16 20:46:19.878684"]] +  (0.8ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Okey Cassin' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Okey Cassin"], ["password_digest", "$2a$10$wiU8jxwwhcX4JNYsJIkmwel6y0jvEn4Nou9j/OI6oDiohywLyrJkW"], ["reputation", 980], ["created_at", "2015-07-16 20:46:19.970536"], ["updated_at", "2015-07-16 20:46:19.970536"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ms. Danyka Bosco' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ms. Danyka Bosco"], ["password_digest", "$2a$10$Yf64vu761BAo.9geLn4dJ.4PlV/Qt/8EvGthrViIIa/oqafl082Vy"], ["reputation", 978], ["created_at", "2015-07-16 20:46:20.054611"], ["updated_at", "2015-07-16 20:46:20.054611"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Herman Stokes' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Herman Stokes"], ["password_digest", "$2a$10$WNXu/Lk5UVsWhBwcvYwgVOOp8elfSCysceRW45g5KaXnODXCGq/.e"], ["reputation", 190], ["created_at", "2015-07-16 20:46:20.138967"], ["updated_at", "2015-07-16 20:46:20.138967"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Brayan Aufderhar' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Brayan Aufderhar"], ["password_digest", "$2a$10$Fl3mKlx4yASzxRDBolf.VeGWrR1qJ4rDwhc7jgSHaguM0c0YaLHiK"], ["reputation", 917], ["created_at", "2015-07-16 20:46:20.228813"], ["updated_at", "2015-07-16 20:46:20.228813"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Karson Macejkovic' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Karson Macejkovic"], ["password_digest", "$2a$10$.eV/a1XOMrOGk10HjQ5KXurgYLotEI1.isxigjvFTEIhorafCMnQO"], ["reputation", 603], ["created_at", "2015-07-16 20:46:20.313346"], ["updated_at", "2015-07-16 20:46:20.313346"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Orpha Carroll' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Orpha Carroll"], ["password_digest", "$2a$10$1Ry.Blrv7636NI/1eIFOau4DdgQLNkcDPMPlSy2u33zFvHeb6uEcK"], ["reputation", 910], ["created_at", "2015-07-16 20:46:20.393735"], ["updated_at", "2015-07-16 20:46:20.393735"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Briana Runolfsdottir Sr.' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Briana Runolfsdottir Sr."], ["password_digest", "$2a$10$FpoK8cGJhFmfpXMHSsmb4.OaWRDkRsyqXa84l9KUCfSAvXEXhqlrq"], ["reputation", 548], ["created_at", "2015-07-16 20:46:20.478956"], ["updated_at", "2015-07-16 20:46:20.478956"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Flavio Osinski' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Flavio Osinski"], ["password_digest", "$2a$10$dsmbNXmQyIxpzx2EJjAd8efbvgwJv86QGxkIClFgA5U6Fud6MITMa"], ["reputation", 70], ["created_at", "2015-07-16 20:46:20.566750"], ["updated_at", "2015-07-16 20:46:20.566750"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dominique Block' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dominique Block"], ["password_digest", "$2a$10$6lJq0FcEnNuOkqSuglXJN.dz6eQUmVNQQv6yAsoksGqq9vtI19PSO"], ["reputation", 363], ["created_at", "2015-07-16 20:46:20.651827"], ["updated_at", "2015-07-16 20:46:20.651827"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Shaniya Reynolds' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Shaniya Reynolds"], ["password_digest", "$2a$10$UJOzAPSX/Dgs2xk.vqdC6.Kg2YVMK8tFpVzFSCoiRTPMF01fRUZ3O"], ["reputation", 684], ["created_at", "2015-07-16 20:46:20.734682"], ["updated_at", "2015-07-16 20:46:20.734682"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Thalia Eichmann Sr.' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Thalia Eichmann Sr."], ["password_digest", "$2a$10$hdE708yLSZmVXTGiEoVDxuoeu2as3SQ3cmJVcuX7dCSKU.DoXgNNi"], ["reputation", 747], ["created_at", "2015-07-16 20:46:20.824112"], ["updated_at", "2015-07-16 20:46:20.824112"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Bethany Luettgen' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Bethany Luettgen"], ["password_digest", "$2a$10$COv3UcEXugXu7i0kIoJWeuHF3GfPzWSvcFfz4zzPErrxKtl1dSE7m"], ["reputation", 949], ["created_at", "2015-07-16 20:46:20.907745"], ["updated_at", "2015-07-16 20:46:20.907745"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Miss Clara Torphy' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Miss Clara Torphy"], ["password_digest", "$2a$10$Xtb7SKuzEunoYdW9birSeuQlRM8ovx5FdE31lGAW.eE/0y57LD9PW"], ["reputation", 698], ["created_at", "2015-07-16 20:46:21.006577"], ["updated_at", "2015-07-16 20:46:21.006577"]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Nathanial Hermann' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Nathanial Hermann"], ["password_digest", "$2a$10$4Tw2Oql5.ejYKCCS84OgP.oc68pUvmYc0JPAYLHnjCQ6pjjIV0HT2"], ["reputation", 703], ["created_at", "2015-07-16 20:46:21.093576"], ["updated_at", "2015-07-16 20:46:21.093576"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Mr. Maia Aufderhar' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Mr. Maia Aufderhar"], ["password_digest", "$2a$10$bBVQyiZpt1nrzdcwHZr6SO1ieDxcEbMU4zuAMcVikk.Jz3qPoNEem"], ["reputation", 13], ["created_at", "2015-07-16 20:46:21.182021"], ["updated_at", "2015-07-16 20:46:21.182021"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Mr. Juanita Boyle' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Mr. Juanita Boyle"], ["password_digest", "$2a$10$.2kjACJl/k9H6.PeAHtIGuE30y0e20AzLEUJ0mPA0a0wZHjeoO0QO"], ["reputation", 811], ["created_at", "2015-07-16 20:46:21.270944"], ["updated_at", "2015-07-16 20:46:21.270944"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Janae Littel Jr.' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Janae Littel Jr."], ["password_digest", "$2a$10$ysUnsZbbnZz0Lc0d03iGf.BunwW8CwjxyD9JJ2iHQz9JVWg7t8ADS"], ["reputation", 606], ["created_at", "2015-07-16 20:46:21.357264"], ["updated_at", "2015-07-16 20:46:21.357264"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Joan Veum' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Joan Veum"], ["password_digest", "$2a$10$8h414gFsI5HUwMg7YPRhj.g0d9m0akOzffNeU8M7dr243Owgo1Yc6"], ["reputation", 973], ["created_at", "2015-07-16 20:46:21.443704"], ["updated_at", "2015-07-16 20:46:21.443704"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Eve Crooks' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Eve Crooks"], ["password_digest", "$2a$10$4tPUQeo25h1/UMnG5J5wpOh23fwYbhLYWxyHojVgkKu0a.AQ0EKti"], ["reputation", 59], ["created_at", "2015-07-16 20:46:21.527371"], ["updated_at", "2015-07-16 20:46:21.527371"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Vito Wiegand Sr.' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Vito Wiegand Sr."], ["password_digest", "$2a$10$jTUsgvbt9RORdmjDM3UpxuT2mks2qqBCufBswS6FxkFDk47vza57y"], ["reputation", 623], ["created_at", "2015-07-16 20:46:21.615607"], ["updated_at", "2015-07-16 20:46:21.615607"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Danielle Aufderhar' LIMIT 1 + SQL (0.3ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Danielle Aufderhar"], ["password_digest", "$2a$10$BbSNr5tvKtfsLhF8W514YuFeJapmdHGC9HPi7q4SqAzrX6hYYR/l."], ["reputation", 272], ["created_at", "2015-07-16 20:46:21.700419"], ["updated_at", "2015-07-16 20:46:21.700419"]] +  (0.5ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Domingo Auer III' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Domingo Auer III"], ["password_digest", "$2a$10$di0jGmspWD9S3pOZa61LLeK5ol97TFhAMjxL3tcQtHk/soFoCHI1m"], ["reputation", 523], ["created_at", "2015-07-16 20:46:21.789541"], ["updated_at", "2015-07-16 20:46:21.789541"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Carissa Fisher Jr.' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Carissa Fisher Jr."], ["password_digest", "$2a$10$euV0gETbY/lBj14Dnk1OaejHkbLJrELREkTQdUOmtHzCzUfHeKBRa"], ["reputation", 9], ["created_at", "2015-07-16 20:46:21.876804"], ["updated_at", "2015-07-16 20:46:21.876804"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dr. Stone Robel' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dr. Stone Robel"], ["password_digest", "$2a$10$T3rn0w5IB9AsN2.aL7aiyeGm1q.jSJvZiRPrX6z84NCHBigcWXjYC"], ["reputation", 808], ["created_at", "2015-07-16 20:46:21.971802"], ["updated_at", "2015-07-16 20:46:21.971802"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Jon Wisoky' LIMIT 1 + SQL (0.6ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Jon Wisoky"], ["password_digest", "$2a$10$esYXxvz5yRg45ThmfretauoGPzb8be35PpI2uhqG9D3E85KW.Nbbe"], ["reputation", 534], ["created_at", "2015-07-16 20:46:22.064863"], ["updated_at", "2015-07-16 20:46:22.064863"]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Jarret Kling' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Jarret Kling"], ["password_digest", "$2a$10$V69y1x0BZs8n4AGlIAmnn..Bqq8JemW7hIEyK4KccqrOs33OMkS4K"], ["reputation", 161], ["created_at", "2015-07-16 20:46:22.151412"], ["updated_at", "2015-07-16 20:46:22.151412"]] +  (0.5ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kris Fadel III' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kris Fadel III"], ["password_digest", "$2a$10$O1GA/szVDsl4aNAWp4s7A.t0bVbyGoyzxmtL9rZmYxRQVhroB4MgW"], ["reputation", 131], ["created_at", "2015-07-16 20:46:22.246040"], ["updated_at", "2015-07-16 20:46:22.246040"]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Pat Doyle' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Pat Doyle"], ["password_digest", "$2a$10$JQNeAU3qZG8Q4WmHc78Xce2O4pLrxXwLDcz3naQz2T96tJ58VVKI."], ["reputation", 235], ["created_at", "2015-07-16 20:46:22.333079"], ["updated_at", "2015-07-16 20:46:22.333079"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kali Crooks' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kali Crooks"], ["password_digest", "$2a$10$Le8VYEeQ56dFp61dk0CRquy0W5bmDEa8IT87jdUQhFey87bfXUXFC"], ["reputation", 745], ["created_at", "2015-07-16 20:46:22.416851"], ["updated_at", "2015-07-16 20:46:22.416851"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Amparo Reynolds' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Amparo Reynolds"], ["password_digest", "$2a$10$CBUC9U9WP.Mhwi9yDdhHYeclk5EtdiKxFIOjoycCuEGTpi2ko5uZC"], ["reputation", 896], ["created_at", "2015-07-16 20:46:22.496566"], ["updated_at", "2015-07-16 20:46:22.496566"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Rafael Stracke' LIMIT 1 + SQL (0.6ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Rafael Stracke"], ["password_digest", "$2a$10$f1elzJl0ygzNdqXLq5NENOZI5yQlxvshteQciojV.DEAGF21hjkn6"], ["reputation", 68], ["created_at", "2015-07-16 20:46:22.594630"], ["updated_at", "2015-07-16 20:46:22.594630"]] +  (0.9ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Johan Schmitt' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Johan Schmitt"], ["password_digest", "$2a$10$55O0r4rWv2DbJDw1EB6Pr.VZjH2pu1skfeYc2HHFkVuV3HAfvQEIa"], ["reputation", 610], ["created_at", "2015-07-16 20:46:22.677354"], ["updated_at", "2015-07-16 20:46:22.677354"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Edmond Reichel' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Edmond Reichel"], ["password_digest", "$2a$10$wOB2WZstq8x.yWGGN0cXHe1QXqS6VXyDRAxhVN/bKe82w6IOpSqBS"], ["reputation", 791], ["created_at", "2015-07-16 20:46:22.766679"], ["updated_at", "2015-07-16 20:46:22.766679"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Delbert Hudson Sr.' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Delbert Hudson Sr."], ["password_digest", "$2a$10$rG/0UuzYvzl3BLvzv2xPGel9QkHvHjBknH0mBUOqQ4iX16HGI0nx2"], ["reputation", 339], ["created_at", "2015-07-16 20:46:22.855757"], ["updated_at", "2015-07-16 20:46:22.855757"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Santiago Schmidt' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Santiago Schmidt"], ["password_digest", "$2a$10$1Qmm8BybyuxaZQMGBL/TouqfLugGf0vFkRE5phM4xXiemCXGkOLFe"], ["reputation", 404], ["created_at", "2015-07-16 20:46:22.942488"], ["updated_at", "2015-07-16 20:46:22.942488"]] +  (0.6ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dr. Isaiah Lowe' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dr. Isaiah Lowe"], ["password_digest", "$2a$10$wpBJMRo/PG4bpDQtr6JiCeMdNoevuc0pP98qASHHr9kbdfMKmYLFO"], ["reputation", 96], ["created_at", "2015-07-16 20:46:23.024254"], ["updated_at", "2015-07-16 20:46:23.024254"]] +  (0.8ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Marta Frami' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Marta Frami"], ["password_digest", "$2a$10$6QKTtTco1UmaFOfwEGHZSO7vCP3L5Rv44jKKxUoXWDdpVm69tGv2C"], ["reputation", 660], ["created_at", "2015-07-16 20:46:23.117815"], ["updated_at", "2015-07-16 20:46:23.117815"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (1.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Delores Howell' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Delores Howell"], ["password_digest", "$2a$10$84VK5gViTyLif2nLa5vwGe3WM6xXBeRIi1E/j4UNtuORDw6dgDZ5K"], ["reputation", 925], ["created_at", "2015-07-16 20:46:23.216143"], ["updated_at", "2015-07-16 20:46:23.216143"]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dell Becker' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dell Becker"], ["password_digest", "$2a$10$FNy7i9GHmU0SptQDTXmgruaAsoNpS6WfbVpk14JxbTvrk0nOukwIi"], ["reputation", 440], ["created_at", "2015-07-16 20:46:23.297802"], ["updated_at", "2015-07-16 20:46:23.297802"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kennedy Bergstrom' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kennedy Bergstrom"], ["password_digest", "$2a$10$EgRE6WIWranXA7PYAqpvVe.QO1D.7xWoo6Il3BMb7ush/J9n.rz8."], ["reputation", 710], ["created_at", "2015-07-16 20:46:23.379190"], ["updated_at", "2015-07-16 20:46:23.379190"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Noel Parisian PhD' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Noel Parisian PhD"], ["password_digest", "$2a$10$Y6jC.AP0RUAp6VDvLwdr6ue4oC9hPIA5GIckHvhWwtEn9k/yIeL2y"], ["reputation", 99], ["created_at", "2015-07-16 20:46:23.468255"], ["updated_at", "2015-07-16 20:46:23.468255"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Jamal Larson' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Jamal Larson"], ["password_digest", "$2a$10$uiL01rh0t9TGzHEMpnhZ0ufzNsdwXRbQRWBy6ZGW36dG8l4/JDxdK"], ["reputation", 892], ["created_at", "2015-07-16 20:46:23.561427"], ["updated_at", "2015-07-16 20:46:23.561427"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Lera Gorczany' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Lera Gorczany"], ["password_digest", "$2a$10$TKlsTL2xSij94KnrdEml8eY3vQyHtX7HxnGDh/kzILQBMj6hlagG6"], ["reputation", 835], ["created_at", "2015-07-16 20:46:23.651611"], ["updated_at", "2015-07-16 20:46:23.651611"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Savanah Renner' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Savanah Renner"], ["password_digest", "$2a$10$Jk8RQ7CFcAQ0aM3ZwnqIJO11JAZKPu/FAYSJxtB8K0cghDJ9kcbuS"], ["reputation", 0], ["created_at", "2015-07-16 20:46:23.743648"], ["updated_at", "2015-07-16 20:46:23.743648"]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN + User Exists (1.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Margarette Brakus' LIMIT 1 + SQL (0.3ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Margarette Brakus"], ["password_digest", "$2a$10$MfBUVp8rNLUUOoA26b7hHuQUqDZLWPFeNSLOtx4Q46flgUcP7rFDC"], ["reputation", 998], ["created_at", "2015-07-16 20:46:23.838678"], ["updated_at", "2015-07-16 20:46:23.838678"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Loy Veum MD' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Loy Veum MD"], ["password_digest", "$2a$10$5/GUcJ2P8ZC2xRMVPr91i.Zfq5HmS7txgkM9y47QQf525tcKOXz.C"], ["reputation", 606], ["created_at", "2015-07-16 20:46:23.928945"], ["updated_at", "2015-07-16 20:46:23.928945"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Gunnar Tromp' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Gunnar Tromp"], ["password_digest", "$2a$10$R/bxyQlTnAfG3LXRJWRb3.DE2ChtUkvujWDnEUvVqwEq9aupg0XAS"], ["reputation", 340], ["created_at", "2015-07-16 20:46:24.014377"], ["updated_at", "2015-07-16 20:46:24.014377"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dillan Bruen' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dillan Bruen"], ["password_digest", "$2a$10$ROb7fyGrUuB8eWdEuzYVy.LZMLYUgjh70ZQOHVJLz.81oS0/6dpUm"], ["reputation", 554], ["created_at", "2015-07-16 20:46:24.102806"], ["updated_at", "2015-07-16 20:46:24.102806"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Jefferey Hackett' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Jefferey Hackett"], ["password_digest", "$2a$10$XVlDbeRznQaKmk.qmyQNNuXx4PgP8ku/C1v5kuf7XuQ.41Xz1RUl2"], ["reputation", 6], ["created_at", "2015-07-16 20:46:24.188208"], ["updated_at", "2015-07-16 20:46:24.188208"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Elroy Hills' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Elroy Hills"], ["password_digest", "$2a$10$JFHRe3vJJR8UdHl.ZQXdRO7H5Glp1RO1WzI/y0fDc3iwTMZgDSUqC"], ["reputation", 930], ["created_at", "2015-07-16 20:46:24.282234"], ["updated_at", "2015-07-16 20:46:24.282234"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Ressie Bins DVM' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Ressie Bins DVM"], ["password_digest", "$2a$10$ocV45l/42e65PgQVfYPDU.0Atf132voUwSoDF04rQ73eKbtG7GWoS"], ["reputation", 482], ["created_at", "2015-07-16 20:46:24.369412"], ["updated_at", "2015-07-16 20:46:24.369412"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Robbie Lehner' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Robbie Lehner"], ["password_digest", "$2a$10$kJBk0MK7wDVlEyyhoX15Bu07mXQMrSENmhqdLeo82UHDJgITB2KV6"], ["reputation", 728], ["created_at", "2015-07-16 20:46:24.456556"], ["updated_at", "2015-07-16 20:46:24.456556"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Audreanne Rempel' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Audreanne Rempel"], ["password_digest", "$2a$10$Mw2LjXJ6zyQ9dCT3E.r7R..iy3ZEdyDfBvddjE095Gf780Qkg3omG"], ["reputation", 366], ["created_at", "2015-07-16 20:46:24.543708"], ["updated_at", "2015-07-16 20:46:24.543708"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Miss Eldon Runolfsson' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Miss Eldon Runolfsson"], ["password_digest", "$2a$10$DbqhsY4m2Fwzp8XEDhyegeliQhT0bZ5hwIwmUOpkvgJNNZUvXpAl."], ["reputation", 814], ["created_at", "2015-07-16 20:46:24.629530"], ["updated_at", "2015-07-16 20:46:24.629530"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Dr. Kelly Little' LIMIT 1 + SQL (0.3ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Dr. Kelly Little"], ["password_digest", "$2a$10$NM0jFfYx7c3YCp0HEgTD5eIsoneX6iReAeGWqBVR7YyzfZRradhe."], ["reputation", 642], ["created_at", "2015-07-16 20:46:24.721307"], ["updated_at", "2015-07-16 20:46:24.721307"]] +  (0.6ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Yasmeen Windler DDS' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Yasmeen Windler DDS"], ["password_digest", "$2a$10$GMDdWzciV6fvYdtaHxFQG.LAbmUDO0xW0l.71vmN4XC96ZdxRq/gK"], ["reputation", 253], ["created_at", "2015-07-16 20:46:24.806630"], ["updated_at", "2015-07-16 20:46:24.806630"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Josue Von' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Josue Von"], ["password_digest", "$2a$10$p2vhIzqFY8RoIJnOYZWrWev0G4YDFwQqAX2TKsbFwRMkT2XPiLbNS"], ["reputation", 695], ["created_at", "2015-07-16 20:46:24.896782"], ["updated_at", "2015-07-16 20:46:24.896782"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Sterling Daniel' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Sterling Daniel"], ["password_digest", "$2a$10$.wxXissX30vO4G2F00gtFO.M6px1nWL89j2vM0NSBzYebuSW2R5K2"], ["reputation", 126], ["created_at", "2015-07-16 20:46:24.985264"], ["updated_at", "2015-07-16 20:46:24.985264"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Daren Gaylord' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Daren Gaylord"], ["password_digest", "$2a$10$gwYM/VxX5WpHJQm7PoD2/O.KQY9JhONxgZ0SCJtVogCPlxIE1/2Ua"], ["reputation", 966], ["created_at", "2015-07-16 20:46:25.072732"], ["updated_at", "2015-07-16 20:46:25.072732"]] +  (0.7ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Quinn Hegmann PhD' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Quinn Hegmann PhD"], ["password_digest", "$2a$10$bziubes4g6f4Q6v65W..0OOIEeJRpi2o8JmbL5UroNL/LM3/TbB/m"], ["reputation", 332], ["created_at", "2015-07-16 20:46:25.159112"], ["updated_at", "2015-07-16 20:46:25.159112"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Mrs. Valentine Kessler' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Mrs. Valentine Kessler"], ["password_digest", "$2a$10$1zOhCpHFtRaMg9C1BrrTAu8JHiDoNHEPt9/KVFFoO3Y6LaT2d.CNC"], ["reputation", 237], ["created_at", "2015-07-16 20:46:25.252594"], ["updated_at", "2015-07-16 20:46:25.252594"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Carli Schiller' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Carli Schiller"], ["password_digest", "$2a$10$nr6umH0qQUQgO94vsx4o4uCjYv2fpHux3SLqN7g1cQLiNolr4nieG"], ["reputation", 768], ["created_at", "2015-07-16 20:46:25.340860"], ["updated_at", "2015-07-16 20:46:25.340860"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Gertrude Watsica V' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Gertrude Watsica V"], ["password_digest", "$2a$10$Lx4B/Xy6OZUWD7qk/AkfROAqN6nn6nsl56kwkkOOgVyumtLCXCdLy"], ["reputation", 181], ["created_at", "2015-07-16 20:46:25.429825"], ["updated_at", "2015-07-16 20:46:25.429825"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Marilyne Smith' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Marilyne Smith"], ["password_digest", "$2a$10$BmWOmG6aJo5M5KOp5mpUEufamWdLMTQ8I8PzQJWa0AbSNKmgzcYI6"], ["reputation", 859], ["created_at", "2015-07-16 20:46:25.525637"], ["updated_at", "2015-07-16 20:46:25.525637"]] +  (0.9ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Kenyon Haley' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Kenyon Haley"], ["password_digest", "$2a$10$KyvcvL9Ca35dm/ezefhw..c1fwJ81HdZn5guaVG.96Ej4FpVl0KIa"], ["reputation", 860], ["created_at", "2015-07-16 20:46:25.607452"], ["updated_at", "2015-07-16 20:46:25.607452"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Bryana Senger' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Bryana Senger"], ["password_digest", "$2a$10$udrR9HzrSotbwGKqAnPOfO3fHCefpvXgyxqgG55p5MGk5AZlv9p2O"], ["reputation", 769], ["created_at", "2015-07-16 20:46:25.693498"], ["updated_at", "2015-07-16 20:46:25.693498"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Abigayle Torphy' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Abigayle Torphy"], ["password_digest", "$2a$10$u/RutmBvliBt5.FZerTBme8wXN5A23QXT/pwbQfXJwdIH2gtAeKuO"], ["reputation", 693], ["created_at", "2015-07-16 20:46:25.782460"], ["updated_at", "2015-07-16 20:46:25.782460"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Fanny Hegmann' LIMIT 1 + SQL (0.1ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Fanny Hegmann"], ["password_digest", "$2a$10$IQLF0diRB1X.E7ZkEIMT2u8bKx7QVGEbLii9zwPSY2xdduwL0NqJG"], ["reputation", 643], ["created_at", "2015-07-16 20:46:25.872039"], ["updated_at", "2015-07-16 20:46:25.872039"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'Liliana Bruen' LIMIT 1 + SQL (0.2ms) INSERT INTO "users" ("username", "password_digest", "reputation", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["username", "Liliana Bruen"], ["password_digest", "$2a$10$CxENtvob6FWIZbZuoIjbneGi0.sIWlfNENGTXVYbhDBJnbKkkJUtG"], ["reputation", 384], ["created_at", "2015-07-16 20:46:25.956495"], ["updated_at", "2015-07-16 20:46:25.956495"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (18.7ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aut sapiente suscipit aliquam voluptatem ducimus magnam. Totam in perferendis cumque vitae odio quia. Voluptatem exercitationem ea est dolores corrupti ducimus. Ut ea nemo cupiditate ex voluptatem beatae enim. Beatae dolorem enim eum consequatur."], ["best", "t"], ["user_id", 39], ["question_id", 65], ["created_at", "2015-07-16 20:46:25.968755"], ["updated_at", "2015-07-16 20:46:25.968755"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Dolorem consequuntur hic sint enim. Consequatur eaque repudiandae accusamus sed dignissimos vitae libero. Magni quis nihil sit. Cumque ut eum ut pariatur molestias."], ["best", "t"], ["user_id", 46], ["question_id", 74], ["created_at", "2015-07-16 20:46:25.990875"], ["updated_at", "2015-07-16 20:46:25.990875"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Magnam dignissimos est. Facilis autem non aliquid. Rem quidem voluptatem quae et ex."], ["user_id", 52], ["question_id", 18], ["created_at", "2015-07-16 20:46:25.993139"], ["updated_at", "2015-07-16 20:46:25.993139"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Sunt quis qui cumque non rerum quibusdam. Modi ducimus maxime. Dignissimos necessitatibus quas dolorem doloremque culpa et consequuntur. Id in fugit commodi rerum et iure quis. Voluptas exercitationem necessitatibus aliquam recusandae."], ["user_id", 94], ["question_id", 65], ["created_at", "2015-07-16 20:46:25.995327"], ["updated_at", "2015-07-16 20:46:25.995327"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Consectetur cupiditate velit cum quis. Et provident rem nesciunt totam nam ea. Voluptatum quisquam nisi esse. Eveniet est et expedita itaque magnam. Consequuntur qui perspiciatis aliquam inventore est voluptate delectus."], ["best", "t"], ["user_id", 5], ["question_id", 40], ["created_at", "2015-07-16 20:46:25.997793"], ["updated_at", "2015-07-16 20:46:25.997793"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Voluptatem molestiae fugit voluptatem nisi. Placeat sed quod molestiae aut aliquam officia. Nulla autem dolorem."], ["user_id", 45], ["question_id", 74], ["created_at", "2015-07-16 20:46:26.000269"], ["updated_at", "2015-07-16 20:46:26.000269"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Qui quisquam harum veniam consequatur et reprehenderit. Sit at aperiam quasi nesciunt illo quaerat eum. Veritatis quod omnis et natus iusto vel cum."], ["user_id", 44], ["question_id", 53], ["created_at", "2015-07-16 20:46:26.003124"], ["updated_at", "2015-07-16 20:46:26.003124"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Qui sunt sunt tenetur et nihil totam. Et consectetur dolor enim ut quisquam. Nulla distinctio porro voluptatem aut laudantium occaecati vitae. Distinctio ea necessitatibus sit quam reprehenderit fugit aliquam."], ["user_id", 85], ["question_id", 70], ["created_at", "2015-07-16 20:46:26.005309"], ["updated_at", "2015-07-16 20:46:26.005309"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Neque suscipit deserunt quos ullam rerum. Voluptatem voluptates at alias. Labore dolorum impedit voluptate accusamus."], ["user_id", 13], ["question_id", 63], ["created_at", "2015-07-16 20:46:26.007471"], ["updated_at", "2015-07-16 20:46:26.007471"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Sint vel incidunt optio amet. Reprehenderit architecto doloremque voluptatum. Dolorum asperiores enim. Voluptas voluptas est. Molestiae et in suscipit enim non sit est."], ["user_id", 93], ["question_id", 69], ["created_at", "2015-07-16 20:46:26.009665"], ["updated_at", "2015-07-16 20:46:26.009665"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Facere enim molestiae aliquid eos illum. Officia quia ea. Dolor est atque non quos. Consequuntur molestias qui."], ["user_id", 5], ["question_id", 74], ["created_at", "2015-07-16 20:46:26.011466"], ["updated_at", "2015-07-16 20:46:26.011466"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Dolor voluptatem est facere perspiciatis quia. Maiores quia atque assumenda quisquam temporibus vel. Qui omnis doloribus voluptas cumque quia distinctio."], ["best", "t"], ["user_id", 48], ["question_id", 22], ["created_at", "2015-07-16 20:46:26.013445"], ["updated_at", "2015-07-16 20:46:26.013445"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Repudiandae eos laudantium non. Praesentium aut placeat repellat ea voluptatem rerum. Esse ipsa natus perspiciatis porro illum veniam architecto. Facere provident et recusandae quod blanditiis."], ["best", "t"], ["user_id", 84], ["question_id", 56], ["created_at", "2015-07-16 20:46:26.015829"], ["updated_at", "2015-07-16 20:46:26.015829"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Praesentium tenetur harum eum quia quasi. Repudiandae delectus iure temporibus optio quo voluptas numquam. Necessitatibus accusantium dignissimos laboriosam rerum hic neque. Voluptatibus unde libero sed est ut ipsam. Ad odit eos id culpa qui voluptatem tempore."], ["best", "t"], ["user_id", 97], ["question_id", 45], ["created_at", "2015-07-16 20:46:26.017868"], ["updated_at", "2015-07-16 20:46:26.017868"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Doloribus est aut. Aut enim animi ad. Assumenda fuga qui debitis asperiores ducimus eaque est. Rem voluptas excepturi impedit dolores ea et. Dolor minima ducimus asperiores."], ["best", "t"], ["user_id", 40], ["question_id", 39], ["created_at", "2015-07-16 20:46:26.019929"], ["updated_at", "2015-07-16 20:46:26.019929"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Nulla sit aliquam nihil voluptates laboriosam. Similique aliquid architecto est occaecati dolorem doloribus in. Voluptatem esse assumenda inventore. Suscipit natus et vel nesciunt cupiditate."], ["best", "t"], ["user_id", 11], ["question_id", 53], ["created_at", "2015-07-16 20:46:26.021915"], ["updated_at", "2015-07-16 20:46:26.021915"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Ut expedita voluptas fugiat ea sint nemo autem. Fugiat magni aut corporis autem. Quas modi aut ea suscipit dignissimos. Quibusdam atque libero et qui nobis iusto. Recusandae asperiores nihil incidunt totam eaque id inventore."], ["user_id", 65], ["question_id", 51], ["created_at", "2015-07-16 20:46:26.023792"], ["updated_at", "2015-07-16 20:46:26.023792"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Accusamus eos vel nisi reiciendis deleniti ut assumenda. Quos sint molestiae iste eaque excepturi. Rem eum consequatur quos quod. Accusantium doloribus quo explicabo. Maxime praesentium id error."], ["best", "t"], ["user_id", 24], ["question_id", 20], ["created_at", "2015-07-16 20:46:26.025761"], ["updated_at", "2015-07-16 20:46:26.025761"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Molestiae et voluptatem temporibus provident quia sed. Aut et explicabo in facere. Qui aut et id. Asperiores sed iste. Incidunt vero non ad recusandae doloribus."], ["best", "t"], ["user_id", 47], ["question_id", 56], ["created_at", "2015-07-16 20:46:26.028005"], ["updated_at", "2015-07-16 20:46:26.028005"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Culpa nostrum possimus quia nesciunt rerum voluptatem. Cum corporis sint eos ut ipsum. Autem minus qui quis qui vitae distinctio libero. Voluptatem est natus quos voluptatem ullam dolores dicta. Dicta libero repellat consectetur ut aut exercitationem quasi."], ["best", "t"], ["user_id", 5], ["question_id", 75], ["created_at", "2015-07-16 20:46:26.029763"], ["updated_at", "2015-07-16 20:46:26.029763"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ad tempore fuga. Voluptatem molestiae sit harum deserunt quidem provident. Sed accusantium a. Deleniti qui quia autem iusto. Dolores suscipit reprehenderit sed."], ["best", "t"], ["user_id", 52], ["question_id", 55], ["created_at", "2015-07-16 20:46:26.031413"], ["updated_at", "2015-07-16 20:46:26.031413"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Dolore sunt autem. Dolorem libero cum aliquam quo sit. Impedit ab vel ipsum neque adipisci inventore."], ["user_id", 96], ["question_id", 32], ["created_at", "2015-07-16 20:46:26.033007"], ["updated_at", "2015-07-16 20:46:26.033007"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Et sit repudiandae voluptatem explicabo fugit. Delectus nobis eos animi illo quia. Est blanditiis magni qui autem occaecati."], ["best", "t"], ["user_id", 59], ["question_id", 7], ["created_at", "2015-07-16 20:46:26.034550"], ["updated_at", "2015-07-16 20:46:26.034550"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Dolores autem fuga voluptas non. Voluptatum commodi tempora autem. Corporis est nobis."], ["best", "t"], ["user_id", 69], ["question_id", 11], ["created_at", "2015-07-16 20:46:26.036341"], ["updated_at", "2015-07-16 20:46:26.036341"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Ab nulla voluptates perferendis et. Quas nesciunt dolor maiores ipsum omnis. Dolorem illo voluptate quia autem harum. Reprehenderit exercitationem rerum dicta amet. Modi nesciunt suscipit voluptates."], ["user_id", 98], ["question_id", 9], ["created_at", "2015-07-16 20:46:26.038224"], ["updated_at", "2015-07-16 20:46:26.038224"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aut maiores veniam. Sint dolorem doloribus minus repellat nobis aut nostrum. Sed occaecati est ipsa."], ["best", "t"], ["user_id", 55], ["question_id", 2], ["created_at", "2015-07-16 20:46:26.040164"], ["updated_at", "2015-07-16 20:46:26.040164"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Accusantium et non. Repudiandae aut quod aut laboriosam. Non ipsam voluptates eveniet eius nobis. Iusto perferendis ea in esse."], ["best", "t"], ["user_id", 43], ["question_id", 57], ["created_at", "2015-07-16 20:46:26.042454"], ["updated_at", "2015-07-16 20:46:26.042454"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quis tempore soluta id quo eum vel quam. Voluptatem nostrum similique in. Error similique est illo quod suscipit necessitatibus."], ["user_id", 95], ["question_id", 22], ["created_at", "2015-07-16 20:46:26.044401"], ["updated_at", "2015-07-16 20:46:26.044401"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Nulla sunt deserunt et pariatur atque. Nulla esse vel. Quas qui et. Consequatur maxime et aspernatur. Fugiat necessitatibus inventore facere."], ["user_id", 97], ["question_id", 35], ["created_at", "2015-07-16 20:46:26.046088"], ["updated_at", "2015-07-16 20:46:26.046088"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Natus esse ut quia dolores dicta. Deserunt non corporis quis non maiores laboriosam repellat. Reiciendis ratione aliquid blanditiis aliquam aut sunt optio."], ["user_id", 40], ["question_id", 38], ["created_at", "2015-07-16 20:46:26.048032"], ["updated_at", "2015-07-16 20:46:26.048032"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Totam illum ducimus eos. Molestiae dolor voluptas est fugiat voluptates quibusdam. Ipsa sunt reprehenderit voluptas eligendi velit. Animi ut illum consequatur vel."], ["user_id", 22], ["question_id", 4], ["created_at", "2015-07-16 20:46:26.059959"], ["updated_at", "2015-07-16 20:46:26.059959"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Qui quo vel provident. Voluptas dicta nemo ratione optio voluptatem sequi. Et neque inventore maiores et cupiditate. Quos accusantium sunt non. Quia ab accusamus necessitatibus quasi."], ["best", "t"], ["user_id", 22], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.062083"], ["updated_at", "2015-07-16 20:46:26.062083"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Eaque quas veritatis dolores similique debitis repellendus quia. Dicta adipisci aliquam et a impedit. Iste accusantium voluptatem."], ["user_id", 57], ["question_id", 7], ["created_at", "2015-07-16 20:46:26.064038"], ["updated_at", "2015-07-16 20:46:26.064038"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Magnam magni aut iure ipsa eligendi et. Facere repellat nostrum vitae sed quaerat perferendis. Quidem doloribus illum inventore porro ut. Sed qui illum."], ["best", "t"], ["user_id", 87], ["question_id", 49], ["created_at", "2015-07-16 20:46:26.066008"], ["updated_at", "2015-07-16 20:46:26.066008"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aut voluptates maiores sint voluptatibus repudiandae voluptatum. Est tenetur esse minima numquam voluptatem. Excepturi voluptatem voluptatem. Quis voluptatibus nemo iure quidem perferendis est."], ["best", "t"], ["user_id", 31], ["question_id", 15], ["created_at", "2015-07-16 20:46:26.068270"], ["updated_at", "2015-07-16 20:46:26.068270"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Voluptas sed voluptatem assumenda est dolorum modi inventore. Qui incidunt sunt qui accusantium sint inventore. Quam praesentium qui. Reprehenderit modi itaque eum."], ["best", "t"], ["user_id", 63], ["question_id", 59], ["created_at", "2015-07-16 20:46:26.070204"], ["updated_at", "2015-07-16 20:46:26.070204"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Beatae ipsum corporis placeat non ad veniam. Illum dignissimos mollitia. Dolores ut numquam non. Voluptatem soluta quae."], ["best", "t"], ["user_id", 42], ["question_id", 26], ["created_at", "2015-07-16 20:46:26.072550"], ["updated_at", "2015-07-16 20:46:26.072550"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Blanditiis tenetur nam et quo velit et iure. Sit tempore commodi. Culpa voluptatem deserunt alias aut illum. Illo ea et illum officia et fuga repellat. Autem et iusto qui enim."], ["best", "t"], ["user_id", 67], ["question_id", 34], ["created_at", "2015-07-16 20:46:26.074746"], ["updated_at", "2015-07-16 20:46:26.074746"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ut quae repellat architecto. Expedita saepe ipsum exercitationem. Ullam quas earum ut consequatur ut voluptatem ad."], ["best", "t"], ["user_id", 12], ["question_id", 35], ["created_at", "2015-07-16 20:46:26.077274"], ["updated_at", "2015-07-16 20:46:26.077274"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quod error velit doloremque minus. Voluptatem cum vero nulla repudiandae. Rerum saepe voluptatem. Repellendus sit aut."], ["user_id", 76], ["question_id", 75], ["created_at", "2015-07-16 20:46:26.079369"], ["updated_at", "2015-07-16 20:46:26.079369"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Excepturi praesentium qui reiciendis aut qui aut. Doloribus neque iusto dolores qui facilis non accusantium. Aspernatur quia reiciendis voluptatem natus sint."], ["best", "t"], ["user_id", 60], ["question_id", 2], ["created_at", "2015-07-16 20:46:26.083161"], ["updated_at", "2015-07-16 20:46:26.083161"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Harum alias similique nostrum magnam. Consectetur doloremque placeat temporibus culpa. Libero sint quasi saepe. Ipsa dolores aspernatur sequi exercitationem quaerat quia. Omnis aut quae in aliquam."], ["user_id", 61], ["question_id", 47], ["created_at", "2015-07-16 20:46:26.085098"], ["updated_at", "2015-07-16 20:46:26.085098"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Et aut ipsa quisquam corporis. Minus nihil fuga natus. Minima rerum nihil molestiae dolor. Quasi quo doloremque at illum delectus maiores. Numquam voluptas eum qui doloribus sunt."], ["user_id", 8], ["question_id", 23], ["created_at", "2015-07-16 20:46:26.086937"], ["updated_at", "2015-07-16 20:46:26.086937"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aperiam similique consectetur accusamus. Quaerat culpa nemo et sed quis recusandae. Id quo fugiat et molestiae quae."], ["best", "t"], ["user_id", 93], ["question_id", 25], ["created_at", "2015-07-16 20:46:26.088877"], ["updated_at", "2015-07-16 20:46:26.088877"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Illo ea et numquam. Quo sit voluptate commodi est. Nisi alias autem magnam. Minus tempora doloremque numquam qui itaque sunt."], ["best", "t"], ["user_id", 63], ["question_id", 52], ["created_at", "2015-07-16 20:46:26.091097"], ["updated_at", "2015-07-16 20:46:26.091097"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Odio iusto minima quo repellendus sed voluptatibus. Et dolorem excepturi rem. Adipisci qui laborum ratione nesciunt quia. Repellendus ad sint ut sed."], ["best", "t"], ["user_id", 97], ["question_id", 22], ["created_at", "2015-07-16 20:46:26.093539"], ["updated_at", "2015-07-16 20:46:26.093539"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Libero consequatur dolor praesentium explicabo at. Dolore ipsum eos deleniti rem voluptates animi. Quia totam quam est. Qui quasi quod. Voluptate repudiandae omnis."], ["user_id", 42], ["question_id", 48], ["created_at", "2015-07-16 20:46:26.095621"], ["updated_at", "2015-07-16 20:46:26.095621"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "In officiis beatae. Placeat non ratione. Minima aut minus voluptatibus laudantium repellat perferendis. Eos eveniet possimus praesentium."], ["user_id", 66], ["question_id", 37], ["created_at", "2015-07-16 20:46:26.097650"], ["updated_at", "2015-07-16 20:46:26.097650"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Culpa nobis sed ducimus dolore illo voluptas. Praesentium sit placeat ipsa. Ducimus rem eum cupiditate repellat eos rerum. Ut eaque est laborum."], ["user_id", 48], ["question_id", 73], ["created_at", "2015-07-16 20:46:26.099412"], ["updated_at", "2015-07-16 20:46:26.099412"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quam consectetur dolore est laudantium ut et. Error ullam aliquid. Velit aut qui laudantium distinctio mollitia."], ["user_id", 34], ["question_id", 64], ["created_at", "2015-07-16 20:46:26.101053"], ["updated_at", "2015-07-16 20:46:26.101053"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Eum sed dolor qui in. Ex quae nam accusantium dolorem sed aliquam non. Dolore illum aut pariatur ipsa alias. Sint quasi hic ut velit. Deserunt facilis pariatur voluptatum fugiat et hic."], ["best", "t"], ["user_id", 92], ["question_id", 32], ["created_at", "2015-07-16 20:46:26.102864"], ["updated_at", "2015-07-16 20:46:26.102864"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Totam dolorem ad ut tenetur et. Excepturi dignissimos dolor corrupti est odit omnis. Magni praesentium alias minus corporis."], ["best", "t"], ["user_id", 23], ["question_id", 34], ["created_at", "2015-07-16 20:46:26.104615"], ["updated_at", "2015-07-16 20:46:26.104615"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Excepturi tempora rerum molestiae eos esse quidem. Iste est laboriosam molestias minus omnis. Illum expedita eligendi nihil. Ut rerum impedit."], ["user_id", 27], ["question_id", 28], ["created_at", "2015-07-16 20:46:26.106799"], ["updated_at", "2015-07-16 20:46:26.106799"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Esse debitis fugiat et at rerum. Sed voluptatum deserunt optio atque id accusamus. Molestias sunt iure dignissimos qui error non. Natus qui error aliquid perspiciatis dicta quas. Possimus qui culpa et quibusdam nobis quam."], ["user_id", 90], ["question_id", 61], ["created_at", "2015-07-16 20:46:26.109068"], ["updated_at", "2015-07-16 20:46:26.109068"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Non beatae quia error veritatis eum quia nostrum. Qui accusamus saepe. Molestias ratione consectetur. Labore repudiandae placeat dolorem. Et numquam perferendis."], ["best", "t"], ["user_id", 13], ["question_id", 54], ["created_at", "2015-07-16 20:46:26.111189"], ["updated_at", "2015-07-16 20:46:26.111189"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Eum ipsa blanditiis in. Vero eveniet harum voluptatem nulla iure. Amet quibusdam velit repellat reprehenderit qui similique ut."], ["user_id", 2], ["question_id", 5], ["created_at", "2015-07-16 20:46:26.113158"], ["updated_at", "2015-07-16 20:46:26.113158"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quibusdam dolorem quidem architecto harum sapiente similique. Repudiandae eaque sunt quibusdam nisi nobis reprehenderit quis. In autem quisquam error nihil impedit. Occaecati ut illo itaque. Animi aut illum assumenda."], ["user_id", 56], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.115088"], ["updated_at", "2015-07-16 20:46:26.115088"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Dolorem omnis soluta quos sapiente ut optio. Labore delectus ad sunt consequatur. Nostrum rem illo velit saepe dicta laboriosam odit."], ["best", "t"], ["user_id", 1], ["question_id", 23], ["created_at", "2015-07-16 20:46:26.116847"], ["updated_at", "2015-07-16 20:46:26.116847"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Esse aliquid cumque. Dolores illum non animi. Accusantium voluptatum quo ad quis sunt est tempore."], ["user_id", 34], ["question_id", 74], ["created_at", "2015-07-16 20:46:26.118868"], ["updated_at", "2015-07-16 20:46:26.118868"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Aliquid eum minima eos veniam et consequuntur. Non odio fugiat est in ut ex. Voluptas tempore accusamus est iure eligendi quis dolores. Occaecati dolores in maiores alias quis quasi."], ["user_id", 76], ["question_id", 17], ["created_at", "2015-07-16 20:46:26.120881"], ["updated_at", "2015-07-16 20:46:26.120881"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Explicabo laudantium et velit consequatur. Qui ex odio pariatur praesentium voluptatem fugiat. Voluptatem eaque hic officia qui ad exercitationem."], ["best", "t"], ["user_id", 89], ["question_id", 18], ["created_at", "2015-07-16 20:46:26.122729"], ["updated_at", "2015-07-16 20:46:26.122729"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Voluptates non sint deserunt laborum ducimus amet fugit. Omnis provident in. Facere molestiae magni. Iste in eius fuga voluptas. Et repudiandae consequuntur."], ["best", "t"], ["user_id", 83], ["question_id", 12], ["created_at", "2015-07-16 20:46:26.124564"], ["updated_at", "2015-07-16 20:46:26.124564"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Est aut voluptatum quisquam et quia laborum. Ipsum molestiae sed explicabo dolor velit et suscipit. Sint perspiciatis tempore quis et cum. Repellat voluptate voluptatem quo at veritatis dolorum eos."], ["best", "t"], ["user_id", 28], ["question_id", 14], ["created_at", "2015-07-16 20:46:26.126307"], ["updated_at", "2015-07-16 20:46:26.126307"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "At in et assumenda distinctio reiciendis. Est facilis optio exercitationem repudiandae repellendus. Et ab nihil maiores provident voluptas doloribus."], ["best", "t"], ["user_id", 90], ["question_id", 58], ["created_at", "2015-07-16 20:46:26.128054"], ["updated_at", "2015-07-16 20:46:26.128054"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Eum quae culpa reprehenderit ut cum eligendi. Est et veritatis expedita provident at. Ad fuga pariatur laboriosam est. Assumenda veniam culpa libero ab in."], ["user_id", 74], ["question_id", 29], ["created_at", "2015-07-16 20:46:26.130161"], ["updated_at", "2015-07-16 20:46:26.130161"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Voluptatem dolor ratione fuga ut molestiae. Sint nihil ea et sint. Ratione nemo a exercitationem voluptatem saepe dolorem eveniet. Nostrum dolorem reprehenderit aspernatur et. Ut dolores laboriosam voluptatem."], ["user_id", 35], ["question_id", 63], ["created_at", "2015-07-16 20:46:26.132379"], ["updated_at", "2015-07-16 20:46:26.132379"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Sed aut reprehenderit sapiente architecto doloribus quae. Voluptas nemo maxime sed. Excepturi provident eius eos."], ["best", "t"], ["user_id", 18], ["question_id", 69], ["created_at", "2015-07-16 20:46:26.134048"], ["updated_at", "2015-07-16 20:46:26.134048"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Et rerum dignissimos voluptatem ut quia neque aut. Qui consequatur nihil consectetur occaecati sed hic omnis. Labore cum ex alias dolor excepturi sint praesentium. Dolorum voluptatibus alias quis at ut ut."], ["best", "t"], ["user_id", 78], ["question_id", 21], ["created_at", "2015-07-16 20:46:26.135802"], ["updated_at", "2015-07-16 20:46:26.135802"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Deserunt iure maxime fugiat est inventore ea aut. Dolores veniam at excepturi. Reprehenderit vitae veritatis. Rerum laborum deleniti quisquam aut dicta veritatis."], ["user_id", 47], ["question_id", 56], ["created_at", "2015-07-16 20:46:26.137663"], ["updated_at", "2015-07-16 20:46:26.137663"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Et ea aspernatur voluptatem aut. Quas quia velit dolorum consequatur. Unde totam cum nostrum. Nihil et eius inventore quod."], ["user_id", 84], ["question_id", 20], ["created_at", "2015-07-16 20:46:26.139500"], ["updated_at", "2015-07-16 20:46:26.139500"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Minus velit voluptatibus ad illo iusto aspernatur voluptate. Molestiae libero dicta nemo ea sunt architecto autem. Amet ipsa odio. Et quod aut sapiente ex dignissimos quasi ipsum. Dolor voluptate aut recusandae illum temporibus doloremque iure."], ["best", "t"], ["user_id", 8], ["question_id", 13], ["created_at", "2015-07-16 20:46:26.142109"], ["updated_at", "2015-07-16 20:46:26.142109"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Provident nobis et sed cum. Fuga natus rerum aut sequi est est. Quaerat aspernatur vel doloremque occaecati nam soluta."], ["user_id", 74], ["question_id", 41], ["created_at", "2015-07-16 20:46:26.144177"], ["updated_at", "2015-07-16 20:46:26.144177"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Earum possimus placeat. Neque repellendus sed. Non id voluptatibus repellat quaerat fugit voluptatem quibusdam. Vel sequi officia ut nostrum. Omnis quam dolorem veniam."], ["best", "t"], ["user_id", 1], ["question_id", 13], ["created_at", "2015-07-16 20:46:26.146277"], ["updated_at", "2015-07-16 20:46:26.146277"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Dolores modi aut. Sequi error voluptatem aut ea. Qui officiis officia ipsam occaecati. Ipsam quo aperiam beatae totam sunt. Non nam delectus laboriosam esse."], ["user_id", 60], ["question_id", 11], ["created_at", "2015-07-16 20:46:26.148535"], ["updated_at", "2015-07-16 20:46:26.148535"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Et doloribus impedit. Earum quia ut sed qui libero. Molestiae labore consequatur recusandae."], ["user_id", 99], ["question_id", 64], ["created_at", "2015-07-16 20:46:26.150637"], ["updated_at", "2015-07-16 20:46:26.150637"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quaerat perspiciatis repellat fuga molestiae consequuntur praesentium necessitatibus. Quo tenetur veniam est dolores ea eos reiciendis. Temporibus maxime earum sequi aut ipsam aut. Rerum beatae nobis dolore quas quia."], ["user_id", 3], ["question_id", 1], ["created_at", "2015-07-16 20:46:26.153039"], ["updated_at", "2015-07-16 20:46:26.153039"]] +  (1.7ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Deleniti unde nulla sequi. Molestiae est ab ad reiciendis eum. Dicta unde inventore. Ut qui quos et tempora nulla."], ["user_id", 2], ["question_id", 10], ["created_at", "2015-07-16 20:46:26.156788"], ["updated_at", "2015-07-16 20:46:26.156788"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Qui quos eos quis officiis est. Officia laboriosam quae repellendus velit consequatur. Sed veniam minus ad. Error laborum tenetur ex recusandae doloremque doloribus."], ["user_id", 46], ["question_id", 73], ["created_at", "2015-07-16 20:46:26.158996"], ["updated_at", "2015-07-16 20:46:26.158996"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Et autem autem quasi consequuntur voluptatum officia omnis. Eum delectus est non. Adipisci reprehenderit incidunt est laborum. Mollitia adipisci velit."], ["user_id", 26], ["question_id", 59], ["created_at", "2015-07-16 20:46:26.161052"], ["updated_at", "2015-07-16 20:46:26.161052"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aut nulla minus numquam. Esse deleniti inventore deserunt reprehenderit omnis. Sint dolores ea asperiores officiis quos expedita est. Quo eius quos expedita ea corporis dolore. Sapiente odio aliquam mollitia sunt cumque ad doloremque."], ["best", "t"], ["user_id", 65], ["question_id", 16], ["created_at", "2015-07-16 20:46:26.163283"], ["updated_at", "2015-07-16 20:46:26.163283"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Natus et fugiat neque earum molestiae. Est in labore rerum eum iste. Mollitia aut dicta eum necessitatibus id nihil qui. Veniam possimus sed est reprehenderit ea corporis."], ["user_id", 34], ["question_id", 12], ["created_at", "2015-07-16 20:46:26.165559"], ["updated_at", "2015-07-16 20:46:26.165559"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quod vitae modi. Hic ut ipsam. Qui vel dolores quas. Sunt fugit ab veniam. Aut error repellat quia."], ["user_id", 90], ["question_id", 23], ["created_at", "2015-07-16 20:46:26.167763"], ["updated_at", "2015-07-16 20:46:26.167763"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Quia placeat corrupti maxime. Ea repellat in. Minus expedita nemo quo ex quibusdam exercitationem dolor. Rerum quis nesciunt impedit ipsa ut ab culpa."], ["best", "t"], ["user_id", 87], ["question_id", 60], ["created_at", "2015-07-16 20:46:26.169799"], ["updated_at", "2015-07-16 20:46:26.169799"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aliquam quisquam at. Est culpa rerum ut quo voluptatem. Porro nam dolorum consequatur dolorem ea libero laborum. Ullam laborum ipsum ratione et deleniti unde."], ["best", "t"], ["user_id", 51], ["question_id", 28], ["created_at", "2015-07-16 20:46:26.172219"], ["updated_at", "2015-07-16 20:46:26.172219"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Sed officiis qui. Veniam nesciunt est debitis in. Eos consequuntur molestiae officiis delectus unde perferendis aut."], ["user_id", 40], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.177468"], ["updated_at", "2015-07-16 20:46:26.177468"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Perferendis quibusdam itaque totam alias earum ab id. Adipisci nihil sunt et sed. Qui atque dicta. Quisquam quam dolore."], ["user_id", 24], ["question_id", 19], ["created_at", "2015-07-16 20:46:26.179701"], ["updated_at", "2015-07-16 20:46:26.179701"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Iusto harum corrupti sed necessitatibus distinctio sed dolor. Fuga qui dolor doloremque ipsa voluptate ut nam. Omnis dolore ea enim deleniti iusto dolor voluptatum."], ["best", "t"], ["user_id", 10], ["question_id", 55], ["created_at", "2015-07-16 20:46:26.182040"], ["updated_at", "2015-07-16 20:46:26.182040"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Eius vitae deserunt excepturi aperiam consequatur. Iusto in ad ipsum laudantium natus quibusdam. Qui explicabo odio."], ["best", "t"], ["user_id", 83], ["question_id", 69], ["created_at", "2015-07-16 20:46:26.183928"], ["updated_at", "2015-07-16 20:46:26.183928"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Corporis vel est aliquam voluptatem et aut. Et tempore quam autem iure ea. Qui beatae expedita officia quasi occaecati non iure."], ["best", "t"], ["user_id", 80], ["question_id", 27], ["created_at", "2015-07-16 20:46:26.185649"], ["updated_at", "2015-07-16 20:46:26.185649"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Repellendus possimus exercitationem dolorem est quaerat. Est iusto omnis. Sed labore fugiat velit magni aliquid ea ullam."], ["best", "t"], ["user_id", 98], ["question_id", 1], ["created_at", "2015-07-16 20:46:26.187542"], ["updated_at", "2015-07-16 20:46:26.187542"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Saepe corporis nobis quia. Quas suscipit rerum optio. Recusandae sit aut est quasi ipsa iure praesentium. Distinctio et esse provident aut. Quia hic beatae facere ipsam labore enim."], ["best", "t"], ["user_id", 31], ["question_id", 31], ["created_at", "2015-07-16 20:46:26.189668"], ["updated_at", "2015-07-16 20:46:26.189668"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Repudiandae culpa unde. Nemo nihil ad sint fugiat eveniet. Officia autem a reiciendis ipsam maxime. Harum soluta sit laboriosam et magni ad."], ["best", "t"], ["user_id", 88], ["question_id", 36], ["created_at", "2015-07-16 20:46:26.191693"], ["updated_at", "2015-07-16 20:46:26.191693"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Doloremque quae sequi. Unde quia saepe error a molestias corrupti dolor. Aspernatur est molestiae id magnam. Et suscipit tempore id. Est ipsum omnis dolorum eum ducimus sint perferendis."], ["user_id", 65], ["question_id", 6], ["created_at", "2015-07-16 20:46:26.193744"], ["updated_at", "2015-07-16 20:46:26.193744"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Dolorem libero nulla non voluptas magni iure est. Amet sequi quisquam. Non ut repellendus dolor. Eaque sunt a odit."], ["user_id", 90], ["question_id", 34], ["created_at", "2015-07-16 20:46:26.195742"], ["updated_at", "2015-07-16 20:46:26.195742"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Perspiciatis ad optio repellendus harum atque et. Ex doloremque optio corporis tempore facere sunt a. Non consectetur ratione laborum repellat."], ["best", "t"], ["user_id", 83], ["question_id", 49], ["created_at", "2015-07-16 20:46:26.197972"], ["updated_at", "2015-07-16 20:46:26.197972"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Quia inventore non sequi qui rem ipsam aut. Voluptatem perferendis quas excepturi rerum non qui. Quo consequatur nisi quas velit doloremque earum aut."], ["best", "t"], ["user_id", 21], ["question_id", 40], ["created_at", "2015-07-16 20:46:26.200106"], ["updated_at", "2015-07-16 20:46:26.200106"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Non velit eum impedit nemo explicabo asperiores labore. Aut suscipit reprehenderit et. Saepe et autem ut quae incidunt ea."], ["best", "t"], ["user_id", 39], ["question_id", 57], ["created_at", "2015-07-16 20:46:26.202150"], ["updated_at", "2015-07-16 20:46:26.202150"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ut ut aut dolores. Atque dolorem nesciunt sunt dolore. Velit dolorem inventore non. Veniam voluptatem facere iusto dolorem. Ut occaecati ea cupiditate quia."], ["best", "t"], ["user_id", 42], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.204278"], ["updated_at", "2015-07-16 20:46:26.204278"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Itaque quis fuga aut. Qui animi molestias illum nisi occaecati eius aut. Tenetur necessitatibus impedit cumque sed exercitationem."], ["best", "t"], ["user_id", 16], ["question_id", 34], ["created_at", "2015-07-16 20:46:26.206285"], ["updated_at", "2015-07-16 20:46:26.206285"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Cumque sed repellat sunt delectus excepturi saepe. Inventore dicta et. Maiores dolorum praesentium aut. Vitae fugit vel."], ["best", "t"], ["user_id", 5], ["question_id", 44], ["created_at", "2015-07-16 20:46:26.209540"], ["updated_at", "2015-07-16 20:46:26.209540"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Nostrum ut iusto. Explicabo autem aut. Porro et quibusdam est sint necessitatibus enim."], ["best", "t"], ["user_id", 64], ["question_id", 38], ["created_at", "2015-07-16 20:46:26.211899"], ["updated_at", "2015-07-16 20:46:26.211899"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quibusdam ut laborum enim sed. Ducimus vel occaecati fugiat reiciendis modi et eligendi. Ab doloremque cupiditate et. Id nobis beatae sed reprehenderit."], ["user_id", 69], ["question_id", 49], ["created_at", "2015-07-16 20:46:26.213824"], ["updated_at", "2015-07-16 20:46:26.213824"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Possimus fuga quasi sunt cupiditate velit. Aut laboriosam quisquam. Ratione accusantium consequuntur occaecati ipsum quo. Quam omnis ut rerum sunt ut ipsam eaque. Eaque expedita vero voluptatibus."], ["user_id", 24], ["question_id", 14], ["created_at", "2015-07-16 20:46:26.215867"], ["updated_at", "2015-07-16 20:46:26.215867"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aliquid incidunt sequi ducimus ut nostrum maiores ea. Ea qui quaerat distinctio autem laborum et. Consequatur officia est animi."], ["best", "t"], ["user_id", 13], ["question_id", 3], ["created_at", "2015-07-16 20:46:26.217762"], ["updated_at", "2015-07-16 20:46:26.217762"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ipsum omnis esse. Omnis rem voluptas id quia deserunt. Consequatur inventore laborum saepe."], ["best", "t"], ["user_id", 34], ["question_id", 45], ["created_at", "2015-07-16 20:46:26.219671"], ["updated_at", "2015-07-16 20:46:26.219671"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Voluptate consectetur omnis labore quae. Nisi voluptate in mollitia incidunt optio aut. Pariatur at consequuntur. Est quos quo nihil blanditiis eaque ad."], ["best", "t"], ["user_id", 48], ["question_id", 40], ["created_at", "2015-07-16 20:46:26.221814"], ["updated_at", "2015-07-16 20:46:26.221814"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Molestiae eaque qui explicabo provident. Voluptatem voluptates ut vitae commodi. Qui aut minus aliquam at voluptas harum omnis. Tempora sed et eum rerum nihil recusandae non. Odio ratione atque."], ["user_id", 89], ["question_id", 30], ["created_at", "2015-07-16 20:46:26.224465"], ["updated_at", "2015-07-16 20:46:26.224465"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quam nobis voluptatum sapiente quis. Ipsam ut qui illum sunt. Occaecati similique debitis suscipit odit veritatis vitae."], ["user_id", 44], ["question_id", 17], ["created_at", "2015-07-16 20:46:26.226635"], ["updated_at", "2015-07-16 20:46:26.226635"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Quaerat ut et qui quia eius rerum. Est vero et dolor ducimus. Ex corrupti magnam ullam. Consequuntur quam quia est odit quisquam asperiores."], ["best", "t"], ["user_id", 76], ["question_id", 3], ["created_at", "2015-07-16 20:46:26.228770"], ["updated_at", "2015-07-16 20:46:26.228770"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Omnis consequatur vel repellat sequi. Temporibus deserunt labore. Accusantium sit iste rerum libero ut. Libero porro facilis. Ut laudantium doloremque dolores."], ["best", "t"], ["user_id", 41], ["question_id", 23], ["created_at", "2015-07-16 20:46:26.230877"], ["updated_at", "2015-07-16 20:46:26.230877"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Consequatur ipsum dicta voluptatem voluptas enim. In qui deserunt reprehenderit ipsam. Perspiciatis deleniti labore eos provident eaque dolorem. Ut temporibus nulla. Consequatur et quia tempore qui numquam."], ["best", "t"], ["user_id", 7], ["question_id", 67], ["created_at", "2015-07-16 20:46:26.232951"], ["updated_at", "2015-07-16 20:46:26.232951"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Possimus ipsum omnis totam voluptatem ut quae. Eius ipsam et fugiat itaque quae. Harum explicabo et cumque labore accusamus veniam officia. Est quo est."], ["user_id", 79], ["question_id", 35], ["created_at", "2015-07-16 20:46:26.234951"], ["updated_at", "2015-07-16 20:46:26.234951"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "In veniam et voluptates. Illo aut reprehenderit quos quo dolorem. Ut et veniam a omnis earum."], ["user_id", 50], ["question_id", 67], ["created_at", "2015-07-16 20:46:26.237305"], ["updated_at", "2015-07-16 20:46:26.237305"]] +  (0.3ms) COMMIT +  (0.5ms) BEGIN + SQL (1.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Molestiae et sunt vitae aliquid eos aut cupiditate. Quia esse soluta tempore ea et sint. Officia sint autem rerum non iure maxime. Tempore numquam qui quod alias similique est animi. Ipsam voluptates nisi similique et fugit."], ["user_id", 7], ["question_id", 42], ["created_at", "2015-07-16 20:46:26.240611"], ["updated_at", "2015-07-16 20:46:26.240611"]] +  (1.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Voluptatem nostrum dolor iure totam placeat quibusdam. Ea laudantium et quia et. Natus nihil adipisci quis eligendi assumenda ut dolorem."], ["user_id", 19], ["question_id", 64], ["created_at", "2015-07-16 20:46:26.248003"], ["updated_at", "2015-07-16 20:46:26.248003"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quidem molestias sed enim dolores. Quis quae quisquam voluptas autem amet harum quasi. Suscipit quia aut corporis soluta. Autem dolorem velit exercitationem eum voluptatem deleniti. Quae porro asperiores et vero dolores."], ["user_id", 9], ["question_id", 24], ["created_at", "2015-07-16 20:46:26.250784"], ["updated_at", "2015-07-16 20:46:26.250784"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Totam quia ut doloremque qui sequi. Quaerat enim velit animi. Nihil reprehenderit ab laboriosam voluptatem. Placeat aut est aut officia possimus."], ["user_id", 77], ["question_id", 44], ["created_at", "2015-07-16 20:46:26.252826"], ["updated_at", "2015-07-16 20:46:26.252826"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Et ea et possimus sunt quo facere. Voluptatem id repellat aut quos nostrum. Fuga provident excepturi reprehenderit quo minima et quod. Et est facere non magni dignissimos et debitis."], ["user_id", 49], ["question_id", 61], ["created_at", "2015-07-16 20:46:26.254741"], ["updated_at", "2015-07-16 20:46:26.254741"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Explicabo et aut quod fugiat sed quasi autem. Corporis exercitationem quia at. Et nemo voluptatibus. Sunt tempore dolorem excepturi exercitationem."], ["user_id", 90], ["question_id", 59], ["created_at", "2015-07-16 20:46:26.256780"], ["updated_at", "2015-07-16 20:46:26.256780"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ipsum officia dolores perspiciatis officiis a et eveniet. Deserunt maiores eaque provident. Quasi ut consequatur quia aut sunt aut autem. Omnis quo autem. Sit id architecto maiores est culpa unde tempora."], ["best", "t"], ["user_id", 67], ["question_id", 59], ["created_at", "2015-07-16 20:46:26.259522"], ["updated_at", "2015-07-16 20:46:26.259522"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Accusamus aut voluptatem vel sint. Quam magni nam autem libero fugit eveniet officiis. Animi ut sed libero atque et rerum. Omnis voluptas dolor earum ad alias voluptatem."], ["best", "t"], ["user_id", 73], ["question_id", 31], ["created_at", "2015-07-16 20:46:26.261528"], ["updated_at", "2015-07-16 20:46:26.261528"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Inventore voluptatem aperiam enim consequatur ab. Voluptas laudantium sunt. Cumque eius consequatur odit ab accusantium."], ["best", "t"], ["user_id", 83], ["question_id", 8], ["created_at", "2015-07-16 20:46:26.263441"], ["updated_at", "2015-07-16 20:46:26.263441"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Nihil ullam ab eveniet. Aut vel explicabo minus totam hic est assumenda. Autem rerum maiores alias cumque nobis quidem qui."], ["best", "t"], ["user_id", 50], ["question_id", 49], ["created_at", "2015-07-16 20:46:26.265766"], ["updated_at", "2015-07-16 20:46:26.265766"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Iure sapiente iste. Voluptatem ipsam distinctio. Consequatur sint aliquid neque. Laboriosam consequuntur fugit asperiores dolor cumque quos est."], ["user_id", 60], ["question_id", 48], ["created_at", "2015-07-16 20:46:26.267932"], ["updated_at", "2015-07-16 20:46:26.267932"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Officia quasi repellat id officiis. Iusto at architecto unde quam ullam error officiis. Sapiente sed expedita aut officia."], ["best", "t"], ["user_id", 96], ["question_id", 48], ["created_at", "2015-07-16 20:46:26.270012"], ["updated_at", "2015-07-16 20:46:26.270012"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Magnam qui dignissimos autem. Facere nobis eos soluta. Consequatur qui necessitatibus labore nihil. Repellat nobis fugit. Id reprehenderit magni quia praesentium velit maxime qui."], ["best", "t"], ["user_id", 60], ["question_id", 11], ["created_at", "2015-07-16 20:46:26.271977"], ["updated_at", "2015-07-16 20:46:26.271977"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Voluptas alias dolor enim laboriosam quo soluta. Doloremque dolore fugiat. Voluptatem hic qui et."], ["user_id", 44], ["question_id", 40], ["created_at", "2015-07-16 20:46:26.273919"], ["updated_at", "2015-07-16 20:46:26.273919"]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Odio ipsum magni aliquam. Omnis qui fugit ad officiis. Consequatur ut at. Fugit necessitatibus amet quod aut id ea debitis. Corrupti occaecati dolore."], ["user_id", 14], ["question_id", 13], ["created_at", "2015-07-16 20:46:26.277180"], ["updated_at", "2015-07-16 20:46:26.277180"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Qui necessitatibus dolorem voluptatibus molestiae ipsa eaque. Ipsam iusto neque. Neque exercitationem dolores voluptatem assumenda. Enim blanditiis qui quia delectus molestiae quod. Dignissimos blanditiis nobis in porro ipsa quaerat a."], ["user_id", 93], ["question_id", 68], ["created_at", "2015-07-16 20:46:26.279192"], ["updated_at", "2015-07-16 20:46:26.279192"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Reprehenderit rerum nisi aut. Voluptatibus aut molestiae tempora eos id quis consequatur. Ut eveniet dolorum quis velit non vero ipsam. Vero impedit deserunt voluptates corrupti autem."], ["best", "t"], ["user_id", 51], ["question_id", 52], ["created_at", "2015-07-16 20:46:26.281342"], ["updated_at", "2015-07-16 20:46:26.281342"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Aliquam exercitationem ut a dolore occaecati unde itaque. Nihil sunt velit magni optio. Ratione ipsum consectetur. In blanditiis officia et doloribus ratione. Nemo error blanditiis non at."], ["user_id", 58], ["question_id", 13], ["created_at", "2015-07-16 20:46:26.283298"], ["updated_at", "2015-07-16 20:46:26.283298"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Ad laborum tenetur ea ut et nulla. Omnis minima debitis similique est velit odit officiis. Nam corrupti dolorem voluptatem ipsa laboriosam quasi. Nostrum maiores eaque qui officia."], ["user_id", 20], ["question_id", 9], ["created_at", "2015-07-16 20:46:26.284971"], ["updated_at", "2015-07-16 20:46:26.284971"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Autem ex quam est. Voluptate numquam inventore et temporibus. Occaecati minima ut."], ["user_id", 85], ["question_id", 56], ["created_at", "2015-07-16 20:46:26.286638"], ["updated_at", "2015-07-16 20:46:26.286638"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Ut recusandae odio vero molestias expedita. Tenetur velit qui dolorem minima praesentium at nobis. Earum incidunt labore et reiciendis. Quis impedit aut numquam."], ["user_id", 33], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.288472"], ["updated_at", "2015-07-16 20:46:26.288472"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Nobis in facilis eos aliquam quo quae corporis. Ut sit quae sit repellendus. Quasi mollitia magnam sit delectus ea qui."], ["user_id", 84], ["question_id", 63], ["created_at", "2015-07-16 20:46:26.290253"], ["updated_at", "2015-07-16 20:46:26.290253"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Et et et distinctio deserunt necessitatibus. Vel consequatur in unde qui. Officia repellendus blanditiis quis veniam eius ut facilis. Ullam fuga iure veniam et vitae voluptates ut. Error amet iusto voluptas debitis quia modi."], ["user_id", 40], ["question_id", 42], ["created_at", "2015-07-16 20:46:26.292252"], ["updated_at", "2015-07-16 20:46:26.292252"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Cumque et omnis dolores aut porro. Corporis laboriosam quasi in culpa similique velit ab. Quasi at recusandae impedit."], ["best", "t"], ["user_id", 25], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.294289"], ["updated_at", "2015-07-16 20:46:26.294289"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "In ex assumenda aut quod. Architecto qui ipsa inventore debitis esse iusto vitae. Harum sint aut impedit consectetur veniam maxime. Nisi officia quos quo. Voluptatibus aperiam sunt error dolorem ut."], ["best", "t"], ["user_id", 17], ["question_id", 44], ["created_at", "2015-07-16 20:46:26.296292"], ["updated_at", "2015-07-16 20:46:26.296292"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Debitis perspiciatis eos velit corrupti voluptatem. Assumenda ut maiores nam ex magni delectus impedit. Est natus tenetur eveniet incidunt. Maiores vero similique et quisquam autem quia."], ["user_id", 99], ["question_id", 10], ["created_at", "2015-07-16 20:46:26.299033"], ["updated_at", "2015-07-16 20:46:26.299033"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Assumenda ipsa dignissimos fuga. Ad dolor exercitationem fuga. Omnis voluptatem voluptatibus natus quo voluptate. Eligendi quia aut non."], ["user_id", 28], ["question_id", 64], ["created_at", "2015-07-16 20:46:26.301505"], ["updated_at", "2015-07-16 20:46:26.301505"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Iure quas et quod quis aspernatur dolorem rerum. Deleniti similique nihil cupiditate sit temporibus quia. Aut quod et eveniet laudantium quia sequi. Quo fuga excepturi consequatur."], ["best", "t"], ["user_id", 3], ["question_id", 48], ["created_at", "2015-07-16 20:46:26.303739"], ["updated_at", "2015-07-16 20:46:26.303739"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ea accusantium itaque ipsam quae. Est a provident dignissimos rerum est cupiditate qui. Commodi dolorum numquam minima et."], ["best", "t"], ["user_id", 6], ["question_id", 49], ["created_at", "2015-07-16 20:46:26.305968"], ["updated_at", "2015-07-16 20:46:26.305968"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Architecto voluptates quisquam sequi. Quis cupiditate omnis est optio. Sapiente consequatur saepe. Ut sed qui et voluptates molestias repudiandae id. Voluptatem assumenda voluptatum ea dolor repellat a."], ["best", "t"], ["user_id", 67], ["question_id", 22], ["created_at", "2015-07-16 20:46:26.308865"], ["updated_at", "2015-07-16 20:46:26.308865"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Consectetur reprehenderit autem dicta at et. Adipisci expedita et. Quisquam sint repellendus aliquam ipsam ex nihil inventore. Placeat expedita ad id aut neque."], ["user_id", 76], ["question_id", 51], ["created_at", "2015-07-16 20:46:26.311059"], ["updated_at", "2015-07-16 20:46:26.311059"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quod maxime fuga ipsam aliquam dolorem. Aliquam vel repellat libero illum cumque voluptatem sit. Deleniti nostrum totam."], ["user_id", 30], ["question_id", 42], ["created_at", "2015-07-16 20:46:26.312831"], ["updated_at", "2015-07-16 20:46:26.312831"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Aut asperiores ut quaerat neque. Quis sequi aut suscipit qui eaque. Voluptatem non fuga amet et repellat occaecati sit. Vel debitis repudiandae ipsa vero rerum."], ["user_id", 40], ["question_id", 23], ["created_at", "2015-07-16 20:46:26.314563"], ["updated_at", "2015-07-16 20:46:26.314563"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Dolorem aliquid quis ut maxime. Illum minima ab excepturi eveniet. In pariatur ad."], ["best", "t"], ["user_id", 72], ["question_id", 13], ["created_at", "2015-07-16 20:46:26.316588"], ["updated_at", "2015-07-16 20:46:26.316588"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Eum perspiciatis et qui. Repudiandae et qui. Est voluptatibus quos voluptas quidem voluptatem dolor deleniti. Minima exercitationem qui corrupti nemo dolores ut. Quis reprehenderit atque incidunt optio dolor fuga."], ["best", "t"], ["user_id", 36], ["question_id", 38], ["created_at", "2015-07-16 20:46:26.318564"], ["updated_at", "2015-07-16 20:46:26.318564"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Repudiandae quia eaque placeat aut. Non sint maiores nisi. Exercitationem eaque at aliquam aut et. Modi veniam non et nihil voluptatum sunt. Culpa aut repellat eligendi nisi debitis blanditiis."], ["best", "t"], ["user_id", 10], ["question_id", 38], ["created_at", "2015-07-16 20:46:26.320390"], ["updated_at", "2015-07-16 20:46:26.320390"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Earum accusamus facere suscipit. Odit non et dolores ad. Autem nulla ea nostrum vero."], ["best", "t"], ["user_id", 70], ["question_id", 58], ["created_at", "2015-07-16 20:46:26.322033"], ["updated_at", "2015-07-16 20:46:26.322033"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Id temporibus sed odio ratione nobis nostrum tenetur. Dolores officia velit nesciunt aut. Eos quo ipsum."], ["user_id", 75], ["question_id", 43], ["created_at", "2015-07-16 20:46:26.324085"], ["updated_at", "2015-07-16 20:46:26.324085"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Rerum nesciunt odio ipsa distinctio. Repudiandae soluta placeat voluptatem ullam nostrum culpa nihil. Nam qui voluptatem officia. Fugit magnam omnis possimus."], ["user_id", 22], ["question_id", 55], ["created_at", "2015-07-16 20:46:26.325827"], ["updated_at", "2015-07-16 20:46:26.325827"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Molestias suscipit quia quod sunt ut nemo. Qui sit quas dolorum nemo. Dolor sunt ducimus non id."], ["best", "t"], ["user_id", 31], ["question_id", 60], ["created_at", "2015-07-16 20:46:26.327756"], ["updated_at", "2015-07-16 20:46:26.327756"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Accusamus veritatis sapiente voluptatem repudiandae veniam sed. Nostrum ut voluptatem ut voluptatum omnis eos incidunt. Odit magni aut at eum dolores quae. Enim odio consequatur molestias aspernatur reprehenderit pariatur voluptatem."], ["best", "t"], ["user_id", 2], ["question_id", 42], ["created_at", "2015-07-16 20:46:26.330046"], ["updated_at", "2015-07-16 20:46:26.330046"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Fugit autem et velit perspiciatis. Recusandae a eos ratione. Rerum ut ea rerum incidunt autem odio."], ["user_id", 6], ["question_id", 71], ["created_at", "2015-07-16 20:46:26.332273"], ["updated_at", "2015-07-16 20:46:26.332273"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quo tempore vel veniam recusandae cumque aut non. Vero cum qui est natus et provident modi. Rem autem dolore eveniet. Cupiditate quis tempore vel asperiores quas illo dolorem. Enim inventore nihil repudiandae et officia."], ["user_id", 34], ["question_id", 25], ["created_at", "2015-07-16 20:46:26.334399"], ["updated_at", "2015-07-16 20:46:26.334399"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Mollitia tempora iusto consequatur et et alias itaque. In repellat soluta maiores. Quo dolorum excepturi modi. Magnam eius quam qui corrupti quibusdam. Officia et veritatis ut explicabo fuga et quis."], ["best", "t"], ["user_id", 6], ["question_id", 18], ["created_at", "2015-07-16 20:46:26.336407"], ["updated_at", "2015-07-16 20:46:26.336407"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Nostrum quaerat voluptas officiis nisi explicabo sed quam. Hic reiciendis magnam ex et reprehenderit. Sequi et quis suscipit aut."], ["user_id", 99], ["question_id", 1], ["created_at", "2015-07-16 20:46:26.338390"], ["updated_at", "2015-07-16 20:46:26.338390"]] +  (0.6ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Deleniti sit veniam. Ipsam voluptas molestiae error saepe aut rerum. Et maxime quae ipsum provident illum. Omnis asperiores nihil veritatis. Quae eaque vero sunt incidunt molestiae."], ["best", "t"], ["user_id", 30], ["question_id", 30], ["created_at", "2015-07-16 20:46:26.340930"], ["updated_at", "2015-07-16 20:46:26.340930"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Tempore reiciendis quo eos consequatur sint aliquid velit. Omnis vel voluptatem. Laborum voluptas autem adipisci repellat dolor rerum. Officiis non porro alias saepe nobis aliquid earum."], ["user_id", 95], ["question_id", 66], ["created_at", "2015-07-16 20:46:26.343501"], ["updated_at", "2015-07-16 20:46:26.343501"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Qui quos adipisci explicabo velit minima et. Hic rerum magnam excepturi. Et quo pariatur cupiditate sapiente omnis voluptatum. Deleniti laboriosam vero placeat. Beatae ut est sed minima numquam."], ["best", "t"], ["user_id", 59], ["question_id", 45], ["created_at", "2015-07-16 20:46:26.345951"], ["updated_at", "2015-07-16 20:46:26.345951"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Et necessitatibus non maxime in quae. Ea id molestias rem iste atque facere earum. Eos repellendus possimus dolores. Quia dolorem dignissimos ullam. Numquam voluptatem laudantium velit."], ["best", "t"], ["user_id", 51], ["question_id", 23], ["created_at", "2015-07-16 20:46:26.348732"], ["updated_at", "2015-07-16 20:46:26.348732"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Aut voluptas iste eius enim quis cupiditate. Error incidunt est consequuntur ea tempore. Voluptas repellendus dolores et et. Molestias excepturi quae omnis fugit nostrum et et. Sunt unde repudiandae sit."], ["best", "t"], ["user_id", 41], ["question_id", 50], ["created_at", "2015-07-16 20:46:26.352091"], ["updated_at", "2015-07-16 20:46:26.352091"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quidem sint minus qui corrupti. Esse tempore dolor rerum repudiandae. Blanditiis necessitatibus tenetur mollitia iusto. Omnis quisquam voluptas cupiditate. Earum consequuntur vel nam molestiae culpa."], ["user_id", 56], ["question_id", 40], ["created_at", "2015-07-16 20:46:26.355256"], ["updated_at", "2015-07-16 20:46:26.355256"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Voluptatibus beatae nihil debitis doloribus dolore velit non. Quia nisi occaecati ea quia id harum. Iusto aut vero officia eos eum recusandae ea."], ["best", "t"], ["user_id", 25], ["question_id", 43], ["created_at", "2015-07-16 20:46:26.357626"], ["updated_at", "2015-07-16 20:46:26.357626"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Rerum voluptates provident beatae enim deleniti sit id. Adipisci molestiae sit soluta quasi. Quis quidem voluptate qui. Modi voluptatem est asperiores ipsam. Aliquam molestiae cupiditate et officiis ea sit."], ["user_id", 83], ["question_id", 24], ["created_at", "2015-07-16 20:46:26.359776"], ["updated_at", "2015-07-16 20:46:26.359776"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Accusamus quas officia eum. Qui aliquid voluptas mollitia officia. Tenetur mollitia voluptas quam deserunt amet. Iste et aut amet et porro. In quia impedit doloribus et."], ["user_id", 31], ["question_id", 13], ["created_at", "2015-07-16 20:46:26.362042"], ["updated_at", "2015-07-16 20:46:26.362042"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Dolore consequuntur labore incidunt ipsa ducimus. Dolorum numquam fugiat molestias omnis voluptatem repudiandae. Culpa ea vel ut. Aut hic aperiam molestiae dolor illum laboriosam perferendis. In accusantium ex odio."], ["user_id", 74], ["question_id", 28], ["created_at", "2015-07-16 20:46:26.364083"], ["updated_at", "2015-07-16 20:46:26.364083"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Nam et omnis voluptatem alias molestias. Enim alias quasi autem voluptates tenetur doloribus ut. Vero qui aut veritatis tenetur. Dolor quo est fuga aut non consequuntur aut."], ["best", "t"], ["user_id", 68], ["question_id", 39], ["created_at", "2015-07-16 20:46:26.366130"], ["updated_at", "2015-07-16 20:46:26.366130"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Quae accusamus consectetur vel. Quis quaerat illo distinctio consequatur. Ut numquam asperiores nulla error."], ["user_id", 7], ["question_id", 53], ["created_at", "2015-07-16 20:46:26.368195"], ["updated_at", "2015-07-16 20:46:26.368195"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Sit suscipit error occaecati. Necessitatibus quo nulla est inventore incidunt earum. Eos ut neque esse fugit iusto illo maxime. Et dolorem nam. Corporis debitis ipsa."], ["best", "t"], ["user_id", 58], ["question_id", 19], ["created_at", "2015-07-16 20:46:26.370271"], ["updated_at", "2015-07-16 20:46:26.370271"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.6ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Odit repellendus asperiores possimus rerum odio minima nostrum. Consequatur deserunt accusantium aut tenetur quod accusamus distinctio. Ipsum sint provident corrupti iusto. Dolores culpa doloribus voluptas enim qui rerum. Est aliquam nihil et."], ["user_id", 95], ["question_id", 63], ["created_at", "2015-07-16 20:46:26.372523"], ["updated_at", "2015-07-16 20:46:26.372523"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Est atque quae corrupti dolor commodi. Modi sapiente et id dignissimos. Iusto voluptatibus quis fuga expedita. Eum sit voluptatibus iste deserunt sit. Eius occaecati dignissimos."], ["user_id", 45], ["question_id", 51], ["created_at", "2015-07-16 20:46:26.375407"], ["updated_at", "2015-07-16 20:46:26.375407"]] +  (0.7ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Eum voluptates nobis voluptatibus. Tempora est rerum veniam. Omnis non harum. Porro beatae totam excepturi. Asperiores sit autem."], ["best", "t"], ["user_id", 64], ["question_id", 75], ["created_at", "2015-07-16 20:46:26.378156"], ["updated_at", "2015-07-16 20:46:26.378156"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Sit praesentium est minus sapiente mollitia enim. Beatae dicta atque quae perspiciatis nam rerum consequatur. Tempora inventore ratione sint molestiae. Consequatur sit repudiandae est expedita ipsa sit qui. Et dolorem velit ea enim consequuntur vel dolorem."], ["best", "t"], ["user_id", 25], ["question_id", 32], ["created_at", "2015-07-16 20:46:26.381170"], ["updated_at", "2015-07-16 20:46:26.381170"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Enim quibusdam rerum doloribus fuga. Hic qui molestias alias magnam enim vitae quos. Et voluptates possimus. Ut earum ullam omnis officia et quia quam. Atque qui corporis officia."], ["best", "t"], ["user_id", 44], ["question_id", 63], ["created_at", "2015-07-16 20:46:26.383234"], ["updated_at", "2015-07-16 20:46:26.383234"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Laboriosam natus nihil. Delectus corporis beatae est. Nihil voluptate consequatur cupiditate. Repellat sed nihil. Fugit totam sed."], ["best", "t"], ["user_id", 48], ["question_id", 28], ["created_at", "2015-07-16 20:46:26.385432"], ["updated_at", "2015-07-16 20:46:26.385432"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Libero tempora voluptatibus reiciendis. Laboriosam molestiae corporis asperiores esse mollitia. Ullam ab unde sed optio id quidem."], ["user_id", 94], ["question_id", 69], ["created_at", "2015-07-16 20:46:26.387462"], ["updated_at", "2015-07-16 20:46:26.387462"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Accusantium eius quam vitae molestias et. Qui error suscipit molestias dignissimos nihil aliquam. Nemo repudiandae commodi ut tempore blanditiis. Autem possimus rerum est voluptatem quis qui."], ["user_id", 33], ["question_id", 58], ["created_at", "2015-07-16 20:46:26.389447"], ["updated_at", "2015-07-16 20:46:26.389447"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Quaerat est veniam. Harum facilis dolorum a voluptatibus. Praesentium ratione est adipisci. Impedit error ad consequuntur."], ["best", "t"], ["user_id", 46], ["question_id", 19], ["created_at", "2015-07-16 20:46:26.391410"], ["updated_at", "2015-07-16 20:46:26.391410"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Saepe aut molestiae ut totam eos adipisci tenetur. Consectetur laboriosam veniam et distinctio enim laborum. Atque unde repellendus praesentium quia. Modi culpa eveniet iure illo consequatur vitae nobis. Doloremque voluptates ducimus necessitatibus."], ["best", "t"], ["user_id", 8], ["question_id", 1], ["created_at", "2015-07-16 20:46:26.393659"], ["updated_at", "2015-07-16 20:46:26.393659"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ducimus aut perferendis ut est non. Corporis ut illo commodi. Et et dignissimos magnam debitis."], ["best", "t"], ["user_id", 83], ["question_id", 17], ["created_at", "2015-07-16 20:46:26.395773"], ["updated_at", "2015-07-16 20:46:26.395773"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Qui eaque velit. Veniam assumenda aliquam illum et. Aliquam fugit error ullam maxime molestiae."], ["user_id", 71], ["question_id", 48], ["created_at", "2015-07-16 20:46:26.398449"], ["updated_at", "2015-07-16 20:46:26.398449"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Temporibus nobis ut velit totam iste occaecati impedit. Qui dolor ex cumque voluptatem alias. Harum in nisi cumque qui esse id non. Ut aut doloribus in deserunt."], ["best", "t"], ["user_id", 30], ["question_id", 4], ["created_at", "2015-07-16 20:46:26.400559"], ["updated_at", "2015-07-16 20:46:26.400559"]] +  (0.6ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Eligendi dolor inventore. At voluptatem quas reiciendis esse tempora quibusdam consequatur. Qui quasi eaque distinctio optio quis voluptatem suscipit."], ["best", "t"], ["user_id", 55], ["question_id", 36], ["created_at", "2015-07-16 20:46:26.403526"], ["updated_at", "2015-07-16 20:46:26.403526"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Harum sit nulla et. Omnis temporibus hic repudiandae et tempore quisquam autem. Adipisci et id in sit excepturi."], ["user_id", 85], ["question_id", 20], ["created_at", "2015-07-16 20:46:26.407491"], ["updated_at", "2015-07-16 20:46:26.407491"]] +  (0.7ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Error vitae est nesciunt mollitia qui et. Recusandae blanditiis at voluptatem. Vitae et voluptates pariatur."], ["best", "t"], ["user_id", 15], ["question_id", 19], ["created_at", "2015-07-16 20:46:26.412412"], ["updated_at", "2015-07-16 20:46:26.412412"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Autem qui harum facere rerum eum maxime. Recusandae eos quasi qui tempora est. Et molestiae ullam omnis sit."], ["best", "t"], ["user_id", 79], ["question_id", 21], ["created_at", "2015-07-16 20:46:26.415032"], ["updated_at", "2015-07-16 20:46:26.415032"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Ut exercitationem qui ea ipsam rerum rem culpa. Sunt ipsum iure et officiis. Perferendis molestias non enim quia perspiciatis voluptates deleniti. Quasi repellendus itaque expedita quos. Dolore tenetur et reprehenderit in eos."], ["user_id", 75], ["question_id", 68], ["created_at", "2015-07-16 20:46:26.417141"], ["updated_at", "2015-07-16 20:46:26.417141"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Deleniti alias in magni eaque temporibus neque. Quis quo natus quia vitae autem et. Ea magnam harum ut voluptas molestiae odit blanditiis. Esse consectetur qui nostrum in corrupti omnis et."], ["best", "t"], ["user_id", 48], ["question_id", 6], ["created_at", "2015-07-16 20:46:26.419126"], ["updated_at", "2015-07-16 20:46:26.419126"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Consequatur voluptatem suscipit laborum distinctio. Consequatur facilis rerum dolor. Error earum tempora ducimus."], ["best", "t"], ["user_id", 99], ["question_id", 55], ["created_at", "2015-07-16 20:46:26.421875"], ["updated_at", "2015-07-16 20:46:26.421875"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Nemo aut consequatur qui officiis occaecati placeat. Est dolore aliquid sint odit dolorem deserunt. Alias non libero sit. Voluptatem odio in nihil saepe quos veritatis."], ["best", "t"], ["user_id", 80], ["question_id", 38], ["created_at", "2015-07-16 20:46:26.424042"], ["updated_at", "2015-07-16 20:46:26.424042"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Omnis voluptate esse consequatur quisquam est. Consequatur est et odit dolorum dolorem. Architecto assumenda in id. Repellat enim eius necessitatibus aperiam dolor nisi. Eum suscipit veritatis voluptatum praesentium."], ["best", "t"], ["user_id", 63], ["question_id", 9], ["created_at", "2015-07-16 20:46:26.426170"], ["updated_at", "2015-07-16 20:46:26.426170"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Est ut voluptas adipisci nam. Est eum quia rerum minus quas quae labore. Inventore sequi mollitia quia neque ut."], ["best", "t"], ["user_id", 9], ["question_id", 63], ["created_at", "2015-07-16 20:46:26.428244"], ["updated_at", "2015-07-16 20:46:26.428244"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Quasi et molestias aut at et quo. Rerum aliquid quia sapiente voluptatem dolor ratione delectus. Pariatur maiores consequatur."], ["best", "t"], ["user_id", 5], ["question_id", 44], ["created_at", "2015-07-16 20:46:26.430283"], ["updated_at", "2015-07-16 20:46:26.430283"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Nihil minima inventore soluta cum ratione veniam ut. Labore nihil eaque eos modi vel sit qui. Rem aut sed eveniet dignissimos eos. Autem porro nesciunt quia consequatur."], ["user_id", 53], ["question_id", 60], ["created_at", "2015-07-16 20:46:26.432596"], ["updated_at", "2015-07-16 20:46:26.432596"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Eum occaecati ducimus corporis consectetur mollitia. Doloremque perspiciatis quisquam dolorem facilis. Ut laudantium non asperiores rerum."], ["user_id", 7], ["question_id", 54], ["created_at", "2015-07-16 20:46:26.434562"], ["updated_at", "2015-07-16 20:46:26.434562"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "answers" ("body", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["body", "Illum quas porro odio architecto. A deserunt repellendus. Dolore esse mollitia laboriosam consequatur excepturi tempore expedita. Ex repellendus ad recusandae laboriosam a sunt. Iusto consequuntur maxime dolor in impedit corporis deserunt."], ["user_id", 16], ["question_id", 32], ["created_at", "2015-07-16 20:46:26.437094"], ["updated_at", "2015-07-16 20:46:26.437094"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Quam aut quibusdam cum iure rem ut. Autem et quidem voluptatem soluta ipsum. Quam cum qui sit. Molestias unde sint."], ["best", "t"], ["user_id", 37], ["question_id", 9], ["created_at", "2015-07-16 20:46:26.440336"], ["updated_at", "2015-07-16 20:46:26.440336"]] +  (0.4ms) COMMIT +  (0.5ms) BEGIN + SQL (0.5ms) INSERT INTO "answers" ("body", "best", "user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Ut possimus ut. Et sunt voluptatibus corporis unde mollitia ratione ut. Odio et blanditiis et omnis sit et accusantium. Totam minus in eos occaecati non. Quibusdam odio facilis explicabo dignissimos voluptas vel expedita."], ["best", "t"], ["user_id", 12], ["question_id", 37], ["created_at", "2015-07-16 20:46:26.446093"], ["updated_at", "2015-07-16 20:46:26.446093"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (11.9ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Voluptatem nobis omnis tempore dolorem."], ["body", "Placeat ea quo accusantium tempore quo. Ut sit asperiores exercitationem sequi. Sint totam earum quidem sit quis fugiat."], ["user_id", 30], ["created_at", "2015-07-16 20:46:26.463904"], ["updated_at", "2015-07-16 20:46:26.463904"]] +  (0.4ms) COMMIT +  (0.2ms) BEGIN + SQL (0.5ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Fugiat voluptatum veritatis et aut doloribus."], ["body", "Ut et animi sit rerum iste. Ipsa sed ea iure ut rem dolorem. Debitis placeat aut. Recusandae expedita aspernatur ex blanditiis quod. Autem laborum commodi."], ["user_id", 73], ["created_at", "2015-07-16 20:46:26.480565"], ["updated_at", "2015-07-16 20:46:26.480565"]] +  (6.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quo reiciendis nostrum et sint dicta omnis totam."], ["body", "Deserunt quia libero. Maiores saepe quos dolores. Reprehenderit occaecati accusantium aut et exercitationem ea reiciendis. Quaerat quia quo fugiat. Maiores laudantium totam est id deleniti dolores ad."], ["user_id", 66], ["created_at", "2015-07-16 20:46:26.490068"], ["updated_at", "2015-07-16 20:46:26.490068"]] +  (6.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Suscipit necessitatibus ex consequatur dolorem."], ["body", "Provident aut qui dolores ad molestias earum voluptas. Et porro modi omnis voluptates iste blanditiis. Eum consequatur qui magnam eius voluptate facilis in."], ["user_id", 56], ["created_at", "2015-07-16 20:46:26.499016"], ["updated_at", "2015-07-16 20:46:26.499016"]] +  (5.1ms) COMMIT +  (0.3ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quisquam necessitatibus rerum aut voluptatem cupiditate sed."], ["body", "Esse temporibus voluptatem. Nisi ut sed. Eligendi aperiam quia. Quos ea quo sequi esse at."], ["user_id", 14], ["created_at", "2015-07-16 20:46:26.507994"], ["updated_at", "2015-07-16 20:46:26.507994"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Suscipit corrupti aut nemo incidunt dolorum consectetur."], ["body", "Rerum repellendus quam beatae ut. Placeat qui et nisi omnis voluptates. Illo totam debitis maxime beatae. Esse illo doloremque pariatur blanditiis omnis debitis eligendi. Non quia et et rerum esse."], ["user_id", 65], ["created_at", "2015-07-16 20:46:26.510901"], ["updated_at", "2015-07-16 20:46:26.510901"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Et consequatur et ut fugit molestiae neque sint."], ["body", "Minima facilis id est voluptate nisi adipisci fugit. Vero rem est impedit voluptatem dolor et. Aut delectus in ut sunt reiciendis ut. Veniam quis iure sed placeat. Vitae sit quos quo quaerat odit eaque sit."], ["user_id", 89], ["created_at", "2015-07-16 20:46:26.513329"], ["updated_at", "2015-07-16 20:46:26.513329"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Ut dolore rerum deserunt a eos."], ["body", "Necessitatibus mollitia quisquam vel at reiciendis debitis ducimus. Distinctio perferendis occaecati et illum earum et doloremque. Modi fuga id commodi rem dolores. Voluptas non dolores quasi consequatur voluptatem consequatur. Ullam voluptas laudantium soluta ea."], ["user_id", 77], ["created_at", "2015-07-16 20:46:26.515640"], ["updated_at", "2015-07-16 20:46:26.515640"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Architecto fugiat modi quis sunt corporis officia."], ["body", "Minus soluta reiciendis repellat. Maxime iusto necessitatibus architecto dignissimos. Quisquam inventore quae commodi eum. Dolorem hic unde."], ["user_id", 24], ["created_at", "2015-07-16 20:46:26.517684"], ["updated_at", "2015-07-16 20:46:26.517684"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Et ut excepturi tempore iusto a cupiditate."], ["body", "Vitae est doloremque quia quos. Aliquam quidem nihil dignissimos quis aperiam magnam sed. Alias earum maiores amet. Et ab voluptatum est praesentium neque. Possimus ab quia sit qui."], ["user_id", 83], ["created_at", "2015-07-16 20:46:26.519629"], ["updated_at", "2015-07-16 20:46:26.519629"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Minima culpa cupiditate fuga voluptatum sed placeat."], ["body", "Est et facere nihil. Aut blanditiis repudiandae voluptate molestiae et nisi. Reprehenderit perspiciatis quam sed."], ["user_id", 52], ["created_at", "2015-07-16 20:46:26.521428"], ["updated_at", "2015-07-16 20:46:26.521428"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Aut minima ut suscipit exercitationem odio."], ["body", "Esse assumenda impedit et autem dolorum explicabo fuga. Et praesentium aut debitis. Qui dignissimos et. Et aliquid non reprehenderit id laborum aut cum."], ["user_id", 71], ["created_at", "2015-07-16 20:46:26.523209"], ["updated_at", "2015-07-16 20:46:26.523209"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Voluptatem incidunt consequatur nam aliquid."], ["body", "Eum omnis mollitia sequi odit saepe veritatis in. Voluptatem vel nesciunt nobis. Dignissimos quasi fugiat sit et sunt ut."], ["user_id", 4], ["created_at", "2015-07-16 20:46:26.525251"], ["updated_at", "2015-07-16 20:46:26.525251"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Ullam adipisci eos in quaerat ex aut vel nemo."], ["body", "Vero harum atque dolores voluptas voluptatum aut magni. Voluptatem deleniti perspiciatis ducimus tempore quis doloribus rem. Quos ea dolorem debitis. Aut eos nostrum voluptatem sapiente omnis. Et suscipit quas."], ["user_id", 36], ["created_at", "2015-07-16 20:46:26.527276"], ["updated_at", "2015-07-16 20:46:26.527276"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Harum quaerat laborum minus."], ["body", "Eius aut deleniti tempora. Cum beatae dolorem non inventore magni. Repellat quae quidem vel voluptatum officia sit in. Pariatur illo voluptas. Ducimus distinctio explicabo recusandae non architecto ex porro."], ["user_id", 69], ["created_at", "2015-07-16 20:46:26.529414"], ["updated_at", "2015-07-16 20:46:26.529414"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Consectetur ratione ipsam explicabo delectus ad possimus."], ["body", "Ratione esse est nemo porro ad. Voluptatum consectetur quas enim asperiores accusamus quos. Minus laborum occaecati sint. Nam sint corrupti maxime."], ["user_id", 77], ["created_at", "2015-07-16 20:46:26.531698"], ["updated_at", "2015-07-16 20:46:26.531698"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Qui accusamus iusto rerum sit."], ["body", "Dolorem quas neque est est necessitatibus. Maiores non repellat soluta omnis ipsa iste aut. Corrupti hic blanditiis."], ["user_id", 23], ["created_at", "2015-07-16 20:46:26.533690"], ["updated_at", "2015-07-16 20:46:26.533690"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Perferendis autem molestias quas et tenetur."], ["body", "Ea adipisci rem ipsam illum laborum aut et. Vel veniam nemo quis quasi ex. Dicta accusantium sed. Repellendus adipisci sit iusto. Explicabo placeat at adipisci corporis."], ["user_id", 72], ["created_at", "2015-07-16 20:46:26.535793"], ["updated_at", "2015-07-16 20:46:26.535793"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quia consequatur quae consequatur aliquid ab quibusdam."], ["body", "Sit voluptas non totam repellat veritatis perferendis dolores. Et voluptatem ut. Possimus ea quaerat. Et est nisi."], ["user_id", 17], ["created_at", "2015-07-16 20:46:26.537902"], ["updated_at", "2015-07-16 20:46:26.537902"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Libero ea occaecati consequatur nemo numquam rerum."], ["body", "Explicabo omnis quasi. Ut iste exercitationem rerum reiciendis. In quas quia sequi veritatis ut praesentium. Soluta architecto quia quod sed est et. Quas voluptatem pariatur amet ea aut."], ["user_id", 58], ["created_at", "2015-07-16 20:46:26.540000"], ["updated_at", "2015-07-16 20:46:26.540000"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Esse ipsam voluptatum ut aut."], ["body", "Natus ipsam labore. Numquam id quaerat eaque eos consectetur rerum. Deleniti omnis ea saepe. Ut vel voluptatem veritatis qui vero qui."], ["user_id", 47], ["created_at", "2015-07-16 20:46:26.542411"], ["updated_at", "2015-07-16 20:46:26.542411"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Reprehenderit numquam alias rerum."], ["body", "Aut qui rerum omnis doloremque. Cum modi minus velit laboriosam voluptatem ad. Maxime facilis sit voluptatem libero. Quidem praesentium temporibus nostrum consequatur consequatur. Incidunt et ea est eius ut aut."], ["user_id", 77], ["created_at", "2015-07-16 20:46:26.544836"], ["updated_at", "2015-07-16 20:46:26.544836"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quod est iste suscipit aut cumque facilis."], ["body", "Delectus quisquam molestiae eum. Dolores animi eum dolorem quia vel. Quis facilis itaque. Aut labore nemo earum alias."], ["user_id", 94], ["created_at", "2015-07-16 20:46:26.546986"], ["updated_at", "2015-07-16 20:46:26.546986"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Perferendis tempora enim reiciendis expedita dolor ea aspernatur."], ["body", "Blanditiis in labore quia perspiciatis itaque totam maiores. Explicabo quis nesciunt et. Quia voluptatem corporis. Voluptatem veritatis voluptas sed at non."], ["user_id", 9], ["created_at", "2015-07-16 20:46:26.549237"], ["updated_at", "2015-07-16 20:46:26.549237"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Commodi et nostrum voluptatem blanditiis."], ["body", "Aliquam quae voluptatem eligendi similique aspernatur dignissimos minus. Sint eligendi ea aliquam praesentium sit quis. Earum voluptatem quo ut. Voluptas eos et nobis qui."], ["user_id", 9], ["created_at", "2015-07-16 20:46:26.551430"], ["updated_at", "2015-07-16 20:46:26.551430"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Vitae earum eos neque."], ["body", "Velit voluptatum suscipit. Nam magni et debitis alias. In velit iusto minus expedita consectetur quis. Labore inventore odio quas. Quidem non fugit in aliquid."], ["user_id", 89], ["created_at", "2015-07-16 20:46:26.553692"], ["updated_at", "2015-07-16 20:46:26.553692"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Est explicabo rerum molestiae voluptatem corporis veritatis."], ["body", "Error qui nobis quo totam qui aspernatur et. Laudantium laborum est ullam odit. Magni quis perspiciatis. Numquam consequatur natus impedit sunt laboriosam dolor quo. Error inventore est vero est."], ["user_id", 23], ["created_at", "2015-07-16 20:46:26.555932"], ["updated_at", "2015-07-16 20:46:26.555932"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Sed quidem repellendus quis nesciunt."], ["body", "Incidunt repellat at aperiam. Voluptatem blanditiis qui dolorem nesciunt. Maxime dolor necessitatibus dignissimos ea."], ["user_id", 5], ["created_at", "2015-07-16 20:46:26.558160"], ["updated_at", "2015-07-16 20:46:26.558160"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (1.4ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Beatae impedit accusantium omnis ut qui a provident."], ["body", "Est dolor modi consectetur. Adipisci et ipsum dignissimos modi possimus deleniti in. Vitae et et sit quasi debitis. Voluptatibus aliquid est."], ["user_id", 24], ["created_at", "2015-07-16 20:46:26.560653"], ["updated_at", "2015-07-16 20:46:26.560653"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Ab aspernatur nisi et dolore at et enim autem."], ["body", "Ab qui fugit vero ea eveniet. Ea hic vitae sunt asperiores et. Ex perferendis unde harum."], ["user_id", 9], ["created_at", "2015-07-16 20:46:26.564542"], ["updated_at", "2015-07-16 20:46:26.564542"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quia suscipit incidunt perferendis laboriosam maxime accusamus velit sed."], ["body", "Voluptatem rerum provident voluptas. Libero in rerum. Maxime voluptatem unde eligendi. Dolor sed ducimus neque facilis id odio. Sint ut eaque quia animi."], ["user_id", 78], ["created_at", "2015-07-16 20:46:26.567260"], ["updated_at", "2015-07-16 20:46:26.567260"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quasi non id quis repellat facere pariatur ab eum."], ["body", "Minus impedit quidem eligendi architecto est nihil. Recusandae praesentium eum fugit explicabo veritatis. Consectetur culpa eos ullam. Ad sed voluptate exercitationem repellat maxime id dolorem. Quasi et consequatur."], ["user_id", 11], ["created_at", "2015-07-16 20:46:26.569775"], ["updated_at", "2015-07-16 20:46:26.569775"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quo non quis tenetur aut iste nihil et."], ["body", "Aperiam corporis porro eum. Fugit dolorem molestias sed laudantium quidem. Harum ipsa laborum amet et iusto."], ["user_id", 20], ["created_at", "2015-07-16 20:46:26.571877"], ["updated_at", "2015-07-16 20:46:26.571877"]] +  (0.9ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Esse error eum sit."], ["body", "Nesciunt ipsum consequatur sit nulla est iste quo. Eius et nihil est dolor consectetur. Consectetur explicabo distinctio. Consequatur ipsum eligendi."], ["user_id", 57], ["created_at", "2015-07-16 20:46:26.576684"], ["updated_at", "2015-07-16 20:46:26.576684"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Excepturi vero voluptas facilis est autem."], ["body", "Fugit deleniti maiores nemo quae. Cumque quia veniam repudiandae et corrupti. Veniam doloremque vel quasi nostrum minima. Dolor ut et harum sed non."], ["user_id", 2], ["created_at", "2015-07-16 20:46:26.579524"], ["updated_at", "2015-07-16 20:46:26.579524"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Et vitae saepe totam quis vel omnis unde sequi."], ["body", "Nihil praesentium quia architecto pariatur. Tempore quaerat ut delectus enim itaque dolores. Sunt aut ipsa illum animi. Dolore unde nulla voluptatem eaque ratione provident. Explicabo ut ratione et ut ut alias eveniet."], ["user_id", 25], ["created_at", "2015-07-16 20:46:26.581939"], ["updated_at", "2015-07-16 20:46:26.581939"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Ea iusto laboriosam officia quae."], ["body", "Et assumenda nihil nesciunt et cupiditate suscipit quia. Id perspiciatis iusto nobis illum voluptas qui soluta. Illo nemo omnis eos."], ["user_id", 12], ["created_at", "2015-07-16 20:46:26.584144"], ["updated_at", "2015-07-16 20:46:26.584144"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Itaque voluptatibus pariatur totam placeat saepe."], ["body", "Expedita animi minima maiores atque maxime. Voluptatem dignissimos nostrum in nihil fugit et harum. Id optio assumenda similique perferendis sint quae qui. Distinctio beatae aliquam."], ["user_id", 53], ["created_at", "2015-07-16 20:46:26.586413"], ["updated_at", "2015-07-16 20:46:26.586413"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quo iusto doloremque ea dolorem voluptas aliquam ut molestias."], ["body", "Rerum sunt nihil. Odio rerum quasi beatae possimus vel excepturi qui. Enim consequuntur aut quia a et error et. Minus voluptates dignissimos facere voluptatem. Optio voluptas aut eius perspiciatis nam ut at."], ["user_id", 5], ["created_at", "2015-07-16 20:46:26.589021"], ["updated_at", "2015-07-16 20:46:26.589021"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Animi quo voluptatum quos enim provident a modi molestiae."], ["body", "Temporibus quia excepturi. Iusto sint sit aut animi vel recusandae voluptatem. Aliquid voluptas laudantium. Facere fuga et. Similique voluptatibus et qui explicabo qui est et."], ["user_id", 68], ["created_at", "2015-07-16 20:46:26.591641"], ["updated_at", "2015-07-16 20:46:26.591641"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Facere et vitae sapiente rerum a et."], ["body", "Est aspernatur ab recusandae consequatur perspiciatis beatae. Eum et molestiae facilis. Rem itaque quod blanditiis natus voluptatem. Dolor officia ut temporibus."], ["user_id", 36], ["created_at", "2015-07-16 20:46:26.594009"], ["updated_at", "2015-07-16 20:46:26.594009"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Soluta corporis vel iusto quia ut."], ["body", "Eos exercitationem aut autem. Ut veritatis et nisi quod qui. Libero eos voluptate in eum nemo et molestiae."], ["user_id", 33], ["created_at", "2015-07-16 20:46:26.596220"], ["updated_at", "2015-07-16 20:46:26.596220"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Natus sunt non est rem vel sit omnis non."], ["body", "Deserunt aut voluptatem magnam impedit. Aut necessitatibus aut nobis quibusdam eligendi cupiditate. Minus et sunt quidem eum tempore aspernatur. Voluptates id dicta consequatur distinctio. Modi et aperiam error rerum illo."], ["user_id", 4], ["created_at", "2015-07-16 20:46:26.598650"], ["updated_at", "2015-07-16 20:46:26.598650"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Omnis ut eveniet amet odit."], ["body", "Omnis error numquam est. Facilis debitis veritatis sit. Soluta qui et id nihil a sit qui. Dolores voluptas et et nemo."], ["user_id", 28], ["created_at", "2015-07-16 20:46:26.600920"], ["updated_at", "2015-07-16 20:46:26.600920"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Vero porro commodi quibusdam qui saepe hic expedita et."], ["body", "Ea et temporibus dicta aspernatur voluptatum. Animi officia id. In id magnam ipsam sunt maxime laborum pariatur. Corporis aut quos ducimus rerum quasi vel."], ["user_id", 34], ["created_at", "2015-07-16 20:46:26.602933"], ["updated_at", "2015-07-16 20:46:26.602933"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Sed cumque autem libero in."], ["body", "Alias optio sed ducimus magnam mollitia explicabo. Nesciunt error sit odio. Ab soluta dolores id minus culpa."], ["user_id", 67], ["created_at", "2015-07-16 20:46:26.604907"], ["updated_at", "2015-07-16 20:46:26.604907"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Tempora voluptatem deleniti velit rem."], ["body", "Non est et unde consequatur iste eos. Dolor voluptatem nisi ducimus incidunt impedit et. Aut reprehenderit voluptas qui excepturi ea et ipsum."], ["user_id", 22], ["created_at", "2015-07-16 20:46:26.607291"], ["updated_at", "2015-07-16 20:46:26.607291"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Assumenda harum in molestias sint ea reprehenderit neque."], ["body", "Veritatis voluptatem eligendi ut. Ea omnis laudantium itaque nam. Earum porro in. Ullam in consequatur unde atque dolorem ut."], ["user_id", 35], ["created_at", "2015-07-16 20:46:26.609857"], ["updated_at", "2015-07-16 20:46:26.609857"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Et ex blanditiis non harum sit laborum ut quod."], ["body", "Ut ipsam consequuntur. Dolore facilis officia impedit similique reiciendis explicabo quia. Voluptas inventore animi quibusdam culpa. Et nihil ut non cum officiis qui quae. Qui atque incidunt inventore minus."], ["user_id", 84], ["created_at", "2015-07-16 20:46:26.612053"], ["updated_at", "2015-07-16 20:46:26.612053"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Occaecati veniam provident earum officiis quasi quas."], ["body", "Nisi rem aut rerum cum. Repudiandae cupiditate iure aut. Modi id non corrupti repellat aut et. Ex autem molestiae aliquid."], ["user_id", 96], ["created_at", "2015-07-16 20:46:26.614137"], ["updated_at", "2015-07-16 20:46:26.614137"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Amet ipsam blanditiis odit maxime dolorum sed qui et."], ["body", "Minus nesciunt repudiandae officiis laborum quis doloribus qui. Tempora ea quo. Mollitia et voluptates. Excepturi soluta nostrum non. Vel aliquid at distinctio cum quod ut quis."], ["user_id", 96], ["created_at", "2015-07-16 20:46:26.616182"], ["updated_at", "2015-07-16 20:46:26.616182"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Commodi dolores vero qui nam."], ["body", "Qui quo ratione at dignissimos sunt. Iusto at ut et neque. Dolores in exercitationem ipsa ut ut. Quo rerum ea rerum. Fugiat accusamus omnis corrupti minus."], ["user_id", 19], ["created_at", "2015-07-16 20:46:26.618776"], ["updated_at", "2015-07-16 20:46:26.618776"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Qui et qui ad reiciendis voluptatem fugiat."], ["body", "Voluptas eius est aut error consequatur voluptatem. Eum recusandae mollitia temporibus. Neque praesentium qui sed. Placeat qui molestiae totam debitis et. Ut et tenetur in."], ["user_id", 45], ["created_at", "2015-07-16 20:46:26.621489"], ["updated_at", "2015-07-16 20:46:26.621489"]] +  (0.6ms) COMMIT +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Vero error aspernatur qui."], ["body", "Rerum perspiciatis aliquid dolorem ratione voluptate libero. Dolor non dolores. Quis adipisci et in id rerum. Suscipit praesentium illo. Aliquam qui aut debitis molestiae totam ipsa molestiae."], ["user_id", 19], ["created_at", "2015-07-16 20:46:26.625644"], ["updated_at", "2015-07-16 20:46:26.625644"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "In exercitationem enim harum."], ["body", "Est totam saepe unde quisquam est blanditiis necessitatibus. Consectetur nesciunt a voluptatum quos rerum. Molestiae non nam."], ["user_id", 58], ["created_at", "2015-07-16 20:46:26.628831"], ["updated_at", "2015-07-16 20:46:26.628831"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quia et voluptas ducimus maxime."], ["body", "Ea reprehenderit dolorem autem autem. Explicabo reprehenderit aut. Magni id et. Enim blanditiis commodi sed dolorum sed."], ["user_id", 30], ["created_at", "2015-07-16 20:46:26.631006"], ["updated_at", "2015-07-16 20:46:26.631006"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Eum qui mollitia ab dolor nesciunt et quis."], ["body", "Eveniet repellat provident. Nemo provident architecto et voluptate. Nihil totam repellendus. Non nobis voluptas. Fugiat nisi error in et voluptates impedit quia."], ["user_id", 80], ["created_at", "2015-07-16 20:46:26.633064"], ["updated_at", "2015-07-16 20:46:26.633064"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Excepturi quasi deleniti alias unde dolorem doloribus."], ["body", "Recusandae odio vero repellendus velit. Natus tempore voluptatem quibusdam inventore odit. Sit ea molestiae ipsam et deleniti. Ex labore qui aut et rerum natus commodi. Voluptatem error incidunt."], ["user_id", 83], ["created_at", "2015-07-16 20:46:26.635184"], ["updated_at", "2015-07-16 20:46:26.635184"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Porro laborum similique deserunt numquam expedita voluptas exercitationem."], ["body", "Voluptas blanditiis eaque aliquid ipsam rerum natus et. Vitae nostrum ex ad accusamus aut voluptates qui. In et accusantium totam sed quis asperiores. Delectus fugit rem natus enim quia."], ["user_id", 53], ["created_at", "2015-07-16 20:46:26.637259"], ["updated_at", "2015-07-16 20:46:26.637259"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Voluptas sapiente consequatur porro ea beatae molestiae accusamus nihil."], ["body", "Sit et non iusto nobis iste. Et quas id magni nihil omnis. Sit nostrum recusandae corporis non vel quod. Odio quo neque optio excepturi minima maiores nemo."], ["user_id", 59], ["created_at", "2015-07-16 20:46:26.639198"], ["updated_at", "2015-07-16 20:46:26.639198"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Magnam labore sit veritatis earum."], ["body", "Quis eum laudantium. Nihil saepe qui impedit tempora asperiores. Saepe eum rerum. Dignissimos at blanditiis deserunt qui excepturi. Ut et ut aut qui sed a."], ["user_id", 45], ["created_at", "2015-07-16 20:46:26.641958"], ["updated_at", "2015-07-16 20:46:26.641958"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Unde molestias voluptatem autem magnam illo a eos."], ["body", "Deleniti vitae aut. Similique ut minima. Non sed repellendus aut. Quos excepturi quis quas ullam corrupti possimus consequatur."], ["user_id", 73], ["created_at", "2015-07-16 20:46:26.644278"], ["updated_at", "2015-07-16 20:46:26.644278"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Ratione nam molestiae unde."], ["body", "Et dignissimos maiores suscipit exercitationem recusandae illum esse. Iure laborum aut necessitatibus. Dolore placeat earum voluptate adipisci ratione quia."], ["user_id", 28], ["created_at", "2015-07-16 20:46:26.646305"], ["updated_at", "2015-07-16 20:46:26.646305"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Expedita sequi officia sed hic."], ["body", "Et nostrum cumque optio iste ratione. Rerum dolor vitae dolorum optio laborum. Veritatis provident error. Consequatur nemo et voluptatum deserunt dolore sequi sunt."], ["user_id", 60], ["created_at", "2015-07-16 20:46:26.648767"], ["updated_at", "2015-07-16 20:46:26.648767"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Eos magnam rerum qui nostrum aut molestias."], ["body", "Fugit vero cum et. Fuga ut est unde. Voluptas nostrum nobis maiores rerum sint et. In quasi non eos distinctio. Ut magnam consequuntur occaecati ut."], ["user_id", 90], ["created_at", "2015-07-16 20:46:26.652010"], ["updated_at", "2015-07-16 20:46:26.652010"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Qui in repudiandae quo illo omnis aliquid modi."], ["body", "Sit eos possimus optio. Qui quod quia quis earum voluptas deleniti. Enim quibusdam illum eos."], ["user_id", 56], ["created_at", "2015-07-16 20:46:26.654660"], ["updated_at", "2015-07-16 20:46:26.654660"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Eligendi odit eius autem quo vel consequatur."], ["body", "Qui quis dolor voluptas sequi praesentium harum. Aut repudiandae quo nulla quia officia et. Tenetur velit in. Et pariatur quia et sit consequatur cumque et. Numquam itaque atque rem ut."], ["user_id", 63], ["created_at", "2015-07-16 20:46:26.657698"], ["updated_at", "2015-07-16 20:46:26.657698"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Et sit recusandae ipsa dolorem necessitatibus."], ["body", "Inventore veritatis molestias atque quia. Eum vero saepe aut pariatur et. Hic dolorem fugit. Iusto error omnis ipsum quibusdam. Omnis sit aut dicta facilis eos provident est."], ["user_id", 10], ["created_at", "2015-07-16 20:46:26.659945"], ["updated_at", "2015-07-16 20:46:26.659945"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Soluta cum et vero earum velit omnis et aperiam."], ["body", "Vitae inventore adipisci. Qui et dolorum adipisci autem. Voluptas sunt velit soluta voluptate."], ["user_id", 73], ["created_at", "2015-07-16 20:46:26.662189"], ["updated_at", "2015-07-16 20:46:26.662189"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Dolorem ad itaque ea consequatur."], ["body", "Eveniet tenetur repudiandae magnam nisi quos sit beatae. Nisi pariatur quam quasi. Voluptatem ut molestias consectetur ipsa."], ["user_id", 94], ["created_at", "2015-07-16 20:46:26.664616"], ["updated_at", "2015-07-16 20:46:26.664616"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Molestiae veniam error occaecati non facilis."], ["body", "Aut vel omnis dolorum et voluptas. Consequatur ipsam labore nulla enim sunt. Cum ut aut vel ullam qui. Beatae consequatur ducimus neque aliquid qui magnam repellat. Qui non cupiditate ea voluptatem quaerat aliquam officia."], ["user_id", 83], ["created_at", "2015-07-16 20:46:26.666709"], ["updated_at", "2015-07-16 20:46:26.666709"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Est ut iste ratione quasi molestias libero nam."], ["body", "Cum facere vitae quam. Magnam earum cum et doloremque natus. Voluptatem reprehenderit atque voluptatibus quod dolores illum enim. Et labore laborum et. Ad sapiente ipsa maiores molestias temporibus cum."], ["user_id", 48], ["created_at", "2015-07-16 20:46:26.668763"], ["updated_at", "2015-07-16 20:46:26.668763"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Quia qui omnis expedita consequatur numquam fuga adipisci sed."], ["body", "Enim et ipsa. Suscipit quidem voluptatem exercitationem. Aperiam assumenda tenetur cumque harum quo. Et exercitationem blanditiis neque ullam inventore eaque id. Unde sed molestiae et tempore sit."], ["user_id", 2], ["created_at", "2015-07-16 20:46:26.670780"], ["updated_at", "2015-07-16 20:46:26.670780"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Numquam odio illo quasi impedit dolor."], ["body", "Consequatur ut quidem sint alias aut aliquam officiis. Quis repellendus quis est tempore atque est quos. Perspiciatis aliquam nostrum excepturi consequuntur laborum."], ["user_id", 7], ["created_at", "2015-07-16 20:46:26.673182"], ["updated_at", "2015-07-16 20:46:26.673182"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "questions" ("title", "body", "user_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["title", "Est cum beatae placeat nam provident qui id harum."], ["body", "Consequuntur nemo possimus eaque aut eveniet tenetur ducimus. Quis possimus doloribus et voluptatibus voluptas. Iusto doloremque aliquam inventore."], ["user_id", 45], ["created_at", "2015-07-16 20:46:26.675709"], ["updated_at", "2015-07-16 20:46:26.675709"]] +  (0.3ms) COMMIT + Answer Load (0.7ms) SELECT "answers".* FROM "answers" +  (0.1ms) BEGIN + SQL (17.9ms) INSERT INTO "comments" ("body", "user_id", "commentable_id", "commentable_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Architecto porro qui qui voluptas iste distinctio nemo. Enim eum adipisci. Cupiditate quod aspernatur sint quia nostrum. Aut sit et non. Voluptas quasi nam impedit sint animi natus maxime."], ["user_id", 56], ["commentable_id", 144], ["commentable_type", "Answer"], ["created_at", "2015-07-16 20:46:26.700558"], ["updated_at", "2015-07-16 20:46:26.700558"]] +  (0.4ms) COMMIT + Question Load (0.7ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "comments" ("body", "user_id", "commentable_id", "commentable_type", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "Occaecati hic labore molestiae dolor non. Non error et. Atque nobis voluptas."], ["user_id", 82], ["commentable_id", 39], ["commentable_type", "Question"], ["created_at", "2015-07-16 20:46:26.725996"], ["updated_at", "2015-07-16 20:46:26.725996"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (19.0ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 90], ["question_id", 56], ["created_at", "2015-07-16 20:46:26.748130"], ["updated_at", "2015-07-16 20:46:26.748130"]] +  (5.2ms) COMMIT + User Load (1.2ms) SELECT "users".* FROM "users" + Question Load (0.5ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 26], ["question_id", 35], ["created_at", "2015-07-16 20:46:26.781258"], ["updated_at", "2015-07-16 20:46:26.781258"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.5ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 64], ["question_id", 17], ["created_at", "2015-07-16 20:46:26.798695"], ["updated_at", "2015-07-16 20:46:26.798695"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 35], ["question_id", 55], ["created_at", "2015-07-16 20:46:26.805645"], ["updated_at", "2015-07-16 20:46:26.805645"]] +  (0.4ms) COMMIT + User Load (0.6ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 63], ["question_id", 20], ["created_at", "2015-07-16 20:46:26.812804"], ["updated_at", "2015-07-16 20:46:26.812804"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 75], ["question_id", 35], ["created_at", "2015-07-16 20:46:26.818919"], ["updated_at", "2015-07-16 20:46:26.818919"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 2], ["question_id", 12], ["created_at", "2015-07-16 20:46:26.825114"], ["updated_at", "2015-07-16 20:46:26.825114"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 85], ["question_id", 2], ["created_at", "2015-07-16 20:46:26.831480"], ["updated_at", "2015-07-16 20:46:26.831480"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 86], ["question_id", 73], ["created_at", "2015-07-16 20:46:26.837349"], ["updated_at", "2015-07-16 20:46:26.837349"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 65], ["question_id", 61], ["created_at", "2015-07-16 20:46:26.844328"], ["updated_at", "2015-07-16 20:46:26.844328"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 83], ["question_id", 68], ["created_at", "2015-07-16 20:46:26.850793"], ["updated_at", "2015-07-16 20:46:26.850793"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 77], ["question_id", 42], ["created_at", "2015-07-16 20:46:26.857075"], ["updated_at", "2015-07-16 20:46:26.857075"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 92], ["question_id", 20], ["created_at", "2015-07-16 20:46:26.863980"], ["updated_at", "2015-07-16 20:46:26.863980"]] +  (0.3ms) COMMIT + User Load (0.5ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 16], ["question_id", 6], ["created_at", "2015-07-16 20:46:26.870140"], ["updated_at", "2015-07-16 20:46:26.870140"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 52], ["question_id", 7], ["created_at", "2015-07-16 20:46:26.876767"], ["updated_at", "2015-07-16 20:46:26.876767"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 82], ["question_id", 14], ["created_at", "2015-07-16 20:46:26.884391"], ["updated_at", "2015-07-16 20:46:26.884391"]] +  (0.3ms) COMMIT + User Load (0.5ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 69], ["question_id", 53], ["created_at", "2015-07-16 20:46:26.891332"], ["updated_at", "2015-07-16 20:46:26.891332"]] +  (0.4ms) COMMIT + User Load (0.7ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 99], ["question_id", 64], ["created_at", "2015-07-16 20:46:26.899078"], ["updated_at", "2015-07-16 20:46:26.899078"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 57], ["question_id", 21], ["created_at", "2015-07-16 20:46:26.905679"], ["updated_at", "2015-07-16 20:46:26.905679"]] +  (0.9ms) COMMIT + User Load (0.7ms) SELECT "users".* FROM "users" + Question Load (3.8ms) SELECT "questions".* FROM "questions" +  (1.9ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 76], ["question_id", 51], ["created_at", "2015-07-16 20:46:26.929587"], ["updated_at", "2015-07-16 20:46:26.929587"]] +  (0.3ms) COMMIT + User Load (0.6ms) SELECT "users".* FROM "users" + Question Load (0.5ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 36], ["question_id", 22], ["created_at", "2015-07-16 20:46:26.939110"], ["updated_at", "2015-07-16 20:46:26.939110"]] +  (1.6ms) COMMIT + User Load (2.5ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 3], ["question_id", 34], ["created_at", "2015-07-16 20:46:26.953078"], ["updated_at", "2015-07-16 20:46:26.953078"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 5], ["question_id", 67], ["created_at", "2015-07-16 20:46:26.959555"], ["updated_at", "2015-07-16 20:46:26.959555"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 90], ["question_id", 69], ["created_at", "2015-07-16 20:46:26.966630"], ["updated_at", "2015-07-16 20:46:26.966630"]] +  (0.3ms) COMMIT + User Load (0.7ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 19], ["question_id", 41], ["created_at", "2015-07-16 20:46:26.974718"], ["updated_at", "2015-07-16 20:46:26.974718"]] +  (1.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 35], ["question_id", 51], ["created_at", "2015-07-16 20:46:26.982950"], ["updated_at", "2015-07-16 20:46:26.982950"]] +  (0.4ms) COMMIT + User Load (0.6ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 2], ["question_id", 14], ["created_at", "2015-07-16 20:46:26.990605"], ["updated_at", "2015-07-16 20:46:26.990605"]] +  (0.4ms) COMMIT + User Load (0.5ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 100], ["question_id", 35], ["created_at", "2015-07-16 20:46:26.997461"], ["updated_at", "2015-07-16 20:46:26.997461"]] +  (0.3ms) COMMIT + User Load (0.6ms) SELECT "users".* FROM "users" + Question Load (0.7ms) SELECT "questions".* FROM "questions" +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 71], ["question_id", 62], ["created_at", "2015-07-16 20:46:27.007233"], ["updated_at", "2015-07-16 20:46:27.007233"]] +  (0.5ms) COMMIT + User Load (0.6ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 92], ["question_id", 8], ["created_at", "2015-07-16 20:46:27.015635"], ["updated_at", "2015-07-16 20:46:27.015635"]] +  (0.3ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 9], ["question_id", 50], ["created_at", "2015-07-16 20:46:27.021683"], ["updated_at", "2015-07-16 20:46:27.021683"]] +  (0.4ms) COMMIT + User Load (0.4ms) SELECT "users".* FROM "users" + Question Load (0.3ms) SELECT "questions".* FROM "questions" +  (0.3ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 59], ["question_id", 6], ["created_at", "2015-07-16 20:46:27.028250"], ["updated_at", "2015-07-16 20:46:27.028250"]] +  (0.3ms) COMMIT + User Load (0.5ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 76], ["question_id", 61], ["created_at", "2015-07-16 20:46:27.034982"], ["updated_at", "2015-07-16 20:46:27.034982"]] +  (0.3ms) COMMIT + User Load (0.5ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 32], ["question_id", 74], ["created_at", "2015-07-16 20:46:27.042109"], ["updated_at", "2015-07-16 20:46:27.042109"]] +  (0.3ms) COMMIT + User Load (0.5ms) SELECT "users".* FROM "users" + Question Load (0.4ms) SELECT "questions".* FROM "questions" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "favorite_questions" ("user_id", "question_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["user_id", 24], ["question_id", 34], ["created_at", "2015-07-16 20:46:27.049206"], ["updated_at", "2015-07-16 20:46:27.049206"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (8.0ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.058933"], ["updated_at", "2015-07-16 20:46:27.058933"]] +  (5.8ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.075038"], ["updated_at", "2015-07-16 20:46:27.075038"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.077209"], ["updated_at", "2015-07-16 20:46:27.077209"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.079049"], ["updated_at", "2015-07-16 20:46:27.079049"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.080699"], ["updated_at", "2015-07-16 20:46:27.080699"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.082611"], ["updated_at", "2015-07-16 20:46:27.082611"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.084426"], ["updated_at", "2015-07-16 20:46:27.084426"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.086228"], ["updated_at", "2015-07-16 20:46:27.086228"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.087960"], ["updated_at", "2015-07-16 20:46:27.087960"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.089709"], ["updated_at", "2015-07-16 20:46:27.089709"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.091404"], ["updated_at", "2015-07-16 20:46:27.091404"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.093093"], ["updated_at", "2015-07-16 20:46:27.093093"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.094733"], ["updated_at", "2015-07-16 20:46:27.094733"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.096295"], ["updated_at", "2015-07-16 20:46:27.096295"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.098089"], ["updated_at", "2015-07-16 20:46:27.098089"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.099781"], ["updated_at", "2015-07-16 20:46:27.099781"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.101191"], ["updated_at", "2015-07-16 20:46:27.101191"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.102751"], ["updated_at", "2015-07-16 20:46:27.102751"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.104147"], ["updated_at", "2015-07-16 20:46:27.104147"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.105813"], ["updated_at", "2015-07-16 20:46:27.105813"]] +  (0.7ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.108302"], ["updated_at", "2015-07-16 20:46:27.108302"]] +  (0.7ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.110505"], ["updated_at", "2015-07-16 20:46:27.110505"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.112388"], ["updated_at", "2015-07-16 20:46:27.112388"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.114027"], ["updated_at", "2015-07-16 20:46:27.114027"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.116235"], ["updated_at", "2015-07-16 20:46:27.116235"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.117928"], ["updated_at", "2015-07-16 20:46:27.117928"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.119398"], ["updated_at", "2015-07-16 20:46:27.119398"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.120849"], ["updated_at", "2015-07-16 20:46:27.120849"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.122260"], ["updated_at", "2015-07-16 20:46:27.122260"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.123674"], ["updated_at", "2015-07-16 20:46:27.123674"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.125094"], ["updated_at", "2015-07-16 20:46:27.125094"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.126507"], ["updated_at", "2015-07-16 20:46:27.126507"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.128115"], ["updated_at", "2015-07-16 20:46:27.128115"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.129640"], ["updated_at", "2015-07-16 20:46:27.129640"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.131050"], ["updated_at", "2015-07-16 20:46:27.131050"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.132415"], ["updated_at", "2015-07-16 20:46:27.132415"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.133770"], ["updated_at", "2015-07-16 20:46:27.133770"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.135157"], ["updated_at", "2015-07-16 20:46:27.135157"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.136566"], ["updated_at", "2015-07-16 20:46:27.136566"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.137945"], ["updated_at", "2015-07-16 20:46:27.137945"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.139484"], ["updated_at", "2015-07-16 20:46:27.139484"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.141201"], ["updated_at", "2015-07-16 20:46:27.141201"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.143265"], ["updated_at", "2015-07-16 20:46:27.143265"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.145034"], ["updated_at", "2015-07-16 20:46:27.145034"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.146661"], ["updated_at", "2015-07-16 20:46:27.146661"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.148247"], ["updated_at", "2015-07-16 20:46:27.148247"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.149994"], ["updated_at", "2015-07-16 20:46:27.149994"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.151836"], ["updated_at", "2015-07-16 20:46:27.151836"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.153556"], ["updated_at", "2015-07-16 20:46:27.153556"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.155157"], ["updated_at", "2015-07-16 20:46:27.155157"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.156741"], ["updated_at", "2015-07-16 20:46:27.156741"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.158312"], ["updated_at", "2015-07-16 20:46:27.158312"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.159846"], ["updated_at", "2015-07-16 20:46:27.159846"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.161283"], ["updated_at", "2015-07-16 20:46:27.161283"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.162784"], ["updated_at", "2015-07-16 20:46:27.162784"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.164505"], ["updated_at", "2015-07-16 20:46:27.164505"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.166275"], ["updated_at", "2015-07-16 20:46:27.166275"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.167940"], ["updated_at", "2015-07-16 20:46:27.167940"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.169365"], ["updated_at", "2015-07-16 20:46:27.169365"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.170774"], ["updated_at", "2015-07-16 20:46:27.170774"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.172243"], ["updated_at", "2015-07-16 20:46:27.172243"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.174043"], ["updated_at", "2015-07-16 20:46:27.174043"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.176270"], ["updated_at", "2015-07-16 20:46:27.176270"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.178203"], ["updated_at", "2015-07-16 20:46:27.178203"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.179915"], ["updated_at", "2015-07-16 20:46:27.179915"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.181485"], ["updated_at", "2015-07-16 20:46:27.181485"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.183224"], ["updated_at", "2015-07-16 20:46:27.183224"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.184848"], ["updated_at", "2015-07-16 20:46:27.184848"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.186591"], ["updated_at", "2015-07-16 20:46:27.186591"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.188347"], ["updated_at", "2015-07-16 20:46:27.188347"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.190059"], ["updated_at", "2015-07-16 20:46:27.190059"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.191698"], ["updated_at", "2015-07-16 20:46:27.191698"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.193350"], ["updated_at", "2015-07-16 20:46:27.193350"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.194924"], ["updated_at", "2015-07-16 20:46:27.194924"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.196422"], ["updated_at", "2015-07-16 20:46:27.196422"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.198408"], ["updated_at", "2015-07-16 20:46:27.198408"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.200141"], ["updated_at", "2015-07-16 20:46:27.200141"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.201642"], ["updated_at", "2015-07-16 20:46:27.201642"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.203221"], ["updated_at", "2015-07-16 20:46:27.203221"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.204697"], ["updated_at", "2015-07-16 20:46:27.204697"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.206080"], ["updated_at", "2015-07-16 20:46:27.206080"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.207686"], ["updated_at", "2015-07-16 20:46:27.207686"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.209480"], ["updated_at", "2015-07-16 20:46:27.209480"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.211297"], ["updated_at", "2015-07-16 20:46:27.211297"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.212858"], ["updated_at", "2015-07-16 20:46:27.212858"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.214369"], ["updated_at", "2015-07-16 20:46:27.214369"]] +  (0.7ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.216593"], ["updated_at", "2015-07-16 20:46:27.216593"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.218469"], ["updated_at", "2015-07-16 20:46:27.218469"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.220401"], ["updated_at", "2015-07-16 20:46:27.220401"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.222330"], ["updated_at", "2015-07-16 20:46:27.222330"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.224550"], ["updated_at", "2015-07-16 20:46:27.224550"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.226218"], ["updated_at", "2015-07-16 20:46:27.226218"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.228248"], ["updated_at", "2015-07-16 20:46:27.228248"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.229814"], ["updated_at", "2015-07-16 20:46:27.229814"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.231193"], ["updated_at", "2015-07-16 20:46:27.231193"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.232605"], ["updated_at", "2015-07-16 20:46:27.232605"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.234115"], ["updated_at", "2015-07-16 20:46:27.234115"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.235481"], ["updated_at", "2015-07-16 20:46:27.235481"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.236832"], ["updated_at", "2015-07-16 20:46:27.236832"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.238374"], ["updated_at", "2015-07-16 20:46:27.238374"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.239914"], ["updated_at", "2015-07-16 20:46:27.239914"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.241565"], ["updated_at", "2015-07-16 20:46:27.241565"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.243369"], ["updated_at", "2015-07-16 20:46:27.243369"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.245538"], ["updated_at", "2015-07-16 20:46:27.245538"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.246924"], ["updated_at", "2015-07-16 20:46:27.246924"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.248510"], ["updated_at", "2015-07-16 20:46:27.248510"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.250894"], ["updated_at", "2015-07-16 20:46:27.250894"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.252925"], ["updated_at", "2015-07-16 20:46:27.252925"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.254688"], ["updated_at", "2015-07-16 20:46:27.254688"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.256590"], ["updated_at", "2015-07-16 20:46:27.256590"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.258202"], ["updated_at", "2015-07-16 20:46:27.258202"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.259773"], ["updated_at", "2015-07-16 20:46:27.259773"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.261378"], ["updated_at", "2015-07-16 20:46:27.261378"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.272152"], ["updated_at", "2015-07-16 20:46:27.272152"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.274015"], ["updated_at", "2015-07-16 20:46:27.274015"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.276439"], ["updated_at", "2015-07-16 20:46:27.276439"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.278274"], ["updated_at", "2015-07-16 20:46:27.278274"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.280115"], ["updated_at", "2015-07-16 20:46:27.280115"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.281717"], ["updated_at", "2015-07-16 20:46:27.281717"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.283571"], ["updated_at", "2015-07-16 20:46:27.283571"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.285228"], ["updated_at", "2015-07-16 20:46:27.285228"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.286763"], ["updated_at", "2015-07-16 20:46:27.286763"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.288389"], ["updated_at", "2015-07-16 20:46:27.288389"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.289829"], ["updated_at", "2015-07-16 20:46:27.289829"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.291501"], ["updated_at", "2015-07-16 20:46:27.291501"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.293065"], ["updated_at", "2015-07-16 20:46:27.293065"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.294464"], ["updated_at", "2015-07-16 20:46:27.294464"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.295823"], ["updated_at", "2015-07-16 20:46:27.295823"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.297272"], ["updated_at", "2015-07-16 20:46:27.297272"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.299095"], ["updated_at", "2015-07-16 20:46:27.299095"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.300593"], ["updated_at", "2015-07-16 20:46:27.300593"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.302228"], ["updated_at", "2015-07-16 20:46:27.302228"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.303782"], ["updated_at", "2015-07-16 20:46:27.303782"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.305175"], ["updated_at", "2015-07-16 20:46:27.305175"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.306599"], ["updated_at", "2015-07-16 20:46:27.306599"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.308750"], ["updated_at", "2015-07-16 20:46:27.308750"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.310620"], ["updated_at", "2015-07-16 20:46:27.310620"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.312297"], ["updated_at", "2015-07-16 20:46:27.312297"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.314085"], ["updated_at", "2015-07-16 20:46:27.314085"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.315725"], ["updated_at", "2015-07-16 20:46:27.315725"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.317224"], ["updated_at", "2015-07-16 20:46:27.317224"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.318685"], ["updated_at", "2015-07-16 20:46:27.318685"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.320665"], ["updated_at", "2015-07-16 20:46:27.320665"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.322232"], ["updated_at", "2015-07-16 20:46:27.322232"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.323622"], ["updated_at", "2015-07-16 20:46:27.323622"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.325101"], ["updated_at", "2015-07-16 20:46:27.325101"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.326790"], ["updated_at", "2015-07-16 20:46:27.326790"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.328357"], ["updated_at", "2015-07-16 20:46:27.328357"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.329691"], ["updated_at", "2015-07-16 20:46:27.329691"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.331095"], ["updated_at", "2015-07-16 20:46:27.331095"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.332572"], ["updated_at", "2015-07-16 20:46:27.332572"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.334240"], ["updated_at", "2015-07-16 20:46:27.334240"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.335684"], ["updated_at", "2015-07-16 20:46:27.335684"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.337272"], ["updated_at", "2015-07-16 20:46:27.337272"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.338637"], ["updated_at", "2015-07-16 20:46:27.338637"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.340284"], ["updated_at", "2015-07-16 20:46:27.340284"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.342516"], ["updated_at", "2015-07-16 20:46:27.342516"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.344364"], ["updated_at", "2015-07-16 20:46:27.344364"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.346014"], ["updated_at", "2015-07-16 20:46:27.346014"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.347679"], ["updated_at", "2015-07-16 20:46:27.347679"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.349507"], ["updated_at", "2015-07-16 20:46:27.349507"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.350965"], ["updated_at", "2015-07-16 20:46:27.350965"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.352377"], ["updated_at", "2015-07-16 20:46:27.352377"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.353836"], ["updated_at", "2015-07-16 20:46:27.353836"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.355219"], ["updated_at", "2015-07-16 20:46:27.355219"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.356642"], ["updated_at", "2015-07-16 20:46:27.356642"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.358190"], ["updated_at", "2015-07-16 20:46:27.358190"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.359822"], ["updated_at", "2015-07-16 20:46:27.359822"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.361525"], ["updated_at", "2015-07-16 20:46:27.361525"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.363227"], ["updated_at", "2015-07-16 20:46:27.363227"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.364900"], ["updated_at", "2015-07-16 20:46:27.364900"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.366540"], ["updated_at", "2015-07-16 20:46:27.366540"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.368261"], ["updated_at", "2015-07-16 20:46:27.368261"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.369880"], ["updated_at", "2015-07-16 20:46:27.369880"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.371522"], ["updated_at", "2015-07-16 20:46:27.371522"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.373249"], ["updated_at", "2015-07-16 20:46:27.373249"]] +  (0.7ms) COMMIT +  (0.2ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.375873"], ["updated_at", "2015-07-16 20:46:27.375873"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.378535"], ["updated_at", "2015-07-16 20:46:27.378535"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.380865"], ["updated_at", "2015-07-16 20:46:27.380865"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.383409"], ["updated_at", "2015-07-16 20:46:27.383409"]] +  (0.8ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.387255"], ["updated_at", "2015-07-16 20:46:27.387255"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.388914"], ["updated_at", "2015-07-16 20:46:27.388914"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.390342"], ["updated_at", "2015-07-16 20:46:27.390342"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.391775"], ["updated_at", "2015-07-16 20:46:27.391775"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.393097"], ["updated_at", "2015-07-16 20:46:27.393097"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.394514"], ["updated_at", "2015-07-16 20:46:27.394514"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.396159"], ["updated_at", "2015-07-16 20:46:27.396159"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.397710"], ["updated_at", "2015-07-16 20:46:27.397710"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.399407"], ["updated_at", "2015-07-16 20:46:27.399407"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.400995"], ["updated_at", "2015-07-16 20:46:27.400995"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.402690"], ["updated_at", "2015-07-16 20:46:27.402690"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.404274"], ["updated_at", "2015-07-16 20:46:27.404274"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.405698"], ["updated_at", "2015-07-16 20:46:27.405698"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.407477"], ["updated_at", "2015-07-16 20:46:27.407477"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.409280"], ["updated_at", "2015-07-16 20:46:27.409280"]] +  (0.6ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.411379"], ["updated_at", "2015-07-16 20:46:27.411379"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.413014"], ["updated_at", "2015-07-16 20:46:27.413014"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.414869"], ["updated_at", "2015-07-16 20:46:27.414869"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.416500"], ["updated_at", "2015-07-16 20:46:27.416500"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.418160"], ["updated_at", "2015-07-16 20:46:27.418160"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.419760"], ["updated_at", "2015-07-16 20:46:27.419760"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.421221"], ["updated_at", "2015-07-16 20:46:27.421221"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.422760"], ["updated_at", "2015-07-16 20:46:27.422760"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.424209"], ["updated_at", "2015-07-16 20:46:27.424209"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.425605"], ["updated_at", "2015-07-16 20:46:27.425605"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.426970"], ["updated_at", "2015-07-16 20:46:27.426970"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.428569"], ["updated_at", "2015-07-16 20:46:27.428569"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.430429"], ["updated_at", "2015-07-16 20:46:27.430429"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.431980"], ["updated_at", "2015-07-16 20:46:27.431980"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.433412"], ["updated_at", "2015-07-16 20:46:27.433412"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.434793"], ["updated_at", "2015-07-16 20:46:27.434793"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.436161"], ["updated_at", "2015-07-16 20:46:27.436161"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.437533"], ["updated_at", "2015-07-16 20:46:27.437533"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.438877"], ["updated_at", "2015-07-16 20:46:27.438877"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.440279"], ["updated_at", "2015-07-16 20:46:27.440279"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.442204"], ["updated_at", "2015-07-16 20:46:27.442204"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.444152"], ["updated_at", "2015-07-16 20:46:27.444152"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.445848"], ["updated_at", "2015-07-16 20:46:27.445848"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.447479"], ["updated_at", "2015-07-16 20:46:27.447479"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.448968"], ["updated_at", "2015-07-16 20:46:27.448968"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.450557"], ["updated_at", "2015-07-16 20:46:27.450557"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.452007"], ["updated_at", "2015-07-16 20:46:27.452007"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.453534"], ["updated_at", "2015-07-16 20:46:27.453534"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.454953"], ["updated_at", "2015-07-16 20:46:27.454953"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.456377"], ["updated_at", "2015-07-16 20:46:27.456377"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.457982"], ["updated_at", "2015-07-16 20:46:27.457982"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.459511"], ["updated_at", "2015-07-16 20:46:27.459511"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.460924"], ["updated_at", "2015-07-16 20:46:27.460924"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.462397"], ["updated_at", "2015-07-16 20:46:27.462397"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.463836"], ["updated_at", "2015-07-16 20:46:27.463836"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.465768"], ["updated_at", "2015-07-16 20:46:27.465768"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.467269"], ["updated_at", "2015-07-16 20:46:27.467269"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.468666"], ["updated_at", "2015-07-16 20:46:27.468666"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.470020"], ["updated_at", "2015-07-16 20:46:27.470020"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.471329"], ["updated_at", "2015-07-16 20:46:27.471329"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.472767"], ["updated_at", "2015-07-16 20:46:27.472767"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.474251"], ["updated_at", "2015-07-16 20:46:27.474251"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.476230"], ["updated_at", "2015-07-16 20:46:27.476230"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.478035"], ["updated_at", "2015-07-16 20:46:27.478035"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.479575"], ["updated_at", "2015-07-16 20:46:27.479575"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.480931"], ["updated_at", "2015-07-16 20:46:27.480931"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.482373"], ["updated_at", "2015-07-16 20:46:27.482373"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.483833"], ["updated_at", "2015-07-16 20:46:27.483833"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.485251"], ["updated_at", "2015-07-16 20:46:27.485251"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.486616"], ["updated_at", "2015-07-16 20:46:27.486616"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.488173"], ["updated_at", "2015-07-16 20:46:27.488173"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.489761"], ["updated_at", "2015-07-16 20:46:27.489761"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.491414"], ["updated_at", "2015-07-16 20:46:27.491414"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.492975"], ["updated_at", "2015-07-16 20:46:27.492975"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.494399"], ["updated_at", "2015-07-16 20:46:27.494399"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "multi-byte"], ["created_at", "2015-07-16 20:46:27.495766"], ["updated_at", "2015-07-16 20:46:27.495766"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.497182"], ["updated_at", "2015-07-16 20:46:27.497182"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.498864"], ["updated_at", "2015-07-16 20:46:27.498864"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.500648"], ["updated_at", "2015-07-16 20:46:27.500648"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.502645"], ["updated_at", "2015-07-16 20:46:27.502645"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.504196"], ["updated_at", "2015-07-16 20:46:27.504196"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.505841"], ["updated_at", "2015-07-16 20:46:27.505841"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.507417"], ["updated_at", "2015-07-16 20:46:27.507417"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "primary"], ["created_at", "2015-07-16 20:46:27.509131"], ["updated_at", "2015-07-16 20:46:27.509131"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.511039"], ["updated_at", "2015-07-16 20:46:27.511039"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.512849"], ["updated_at", "2015-07-16 20:46:27.512849"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.514531"], ["updated_at", "2015-07-16 20:46:27.514531"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.516047"], ["updated_at", "2015-07-16 20:46:27.516047"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.517537"], ["updated_at", "2015-07-16 20:46:27.517537"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.518991"], ["updated_at", "2015-07-16 20:46:27.518991"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.520633"], ["updated_at", "2015-07-16 20:46:27.520633"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.522789"], ["updated_at", "2015-07-16 20:46:27.522789"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.524482"], ["updated_at", "2015-07-16 20:46:27.524482"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "back-end"], ["created_at", "2015-07-16 20:46:27.526187"], ["updated_at", "2015-07-16 20:46:27.526187"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.527754"], ["updated_at", "2015-07-16 20:46:27.527754"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.529367"], ["updated_at", "2015-07-16 20:46:27.529367"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.530918"], ["updated_at", "2015-07-16 20:46:27.530918"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (1.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.532552"], ["updated_at", "2015-07-16 20:46:27.532552"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "bluetooth"], ["created_at", "2015-07-16 20:46:27.535717"], ["updated_at", "2015-07-16 20:46:27.535717"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.537456"], ["updated_at", "2015-07-16 20:46:27.537456"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "virtual"], ["created_at", "2015-07-16 20:46:27.539834"], ["updated_at", "2015-07-16 20:46:27.539834"]] +  (0.5ms) COMMIT +  (0.3ms) BEGIN + SQL (0.3ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "1080p"], ["created_at", "2015-07-16 20:46:27.543981"], ["updated_at", "2015-07-16 20:46:27.543981"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.546894"], ["updated_at", "2015-07-16 20:46:27.546894"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.548958"], ["updated_at", "2015-07-16 20:46:27.548958"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mobile"], ["created_at", "2015-07-16 20:46:27.550702"], ["updated_at", "2015-07-16 20:46:27.550702"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.552405"], ["updated_at", "2015-07-16 20:46:27.552405"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.554075"], ["updated_at", "2015-07-16 20:46:27.554075"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.555732"], ["updated_at", "2015-07-16 20:46:27.555732"]] +  (0.3ms) COMMIT +  (0.2ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "solid state"], ["created_at", "2015-07-16 20:46:27.557563"], ["updated_at", "2015-07-16 20:46:27.557563"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "open-source"], ["created_at", "2015-07-16 20:46:27.559328"], ["updated_at", "2015-07-16 20:46:27.559328"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.560861"], ["updated_at", "2015-07-16 20:46:27.560861"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.562476"], ["updated_at", "2015-07-16 20:46:27.562476"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "digital"], ["created_at", "2015-07-16 20:46:27.564525"], ["updated_at", "2015-07-16 20:46:27.564525"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.566196"], ["updated_at", "2015-07-16 20:46:27.566196"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.567831"], ["updated_at", "2015-07-16 20:46:27.567831"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "redundant"], ["created_at", "2015-07-16 20:46:27.569404"], ["updated_at", "2015-07-16 20:46:27.569404"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.570877"], ["updated_at", "2015-07-16 20:46:27.570877"]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "auxiliary"], ["created_at", "2015-07-16 20:46:27.572271"], ["updated_at", "2015-07-16 20:46:27.572271"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "optical"], ["created_at", "2015-07-16 20:46:27.574037"], ["updated_at", "2015-07-16 20:46:27.574037"]] +  (0.5ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "online"], ["created_at", "2015-07-16 20:46:27.575971"], ["updated_at", "2015-07-16 20:46:27.575971"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "haptic"], ["created_at", "2015-07-16 20:46:27.578040"], ["updated_at", "2015-07-16 20:46:27.578040"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "neural"], ["created_at", "2015-07-16 20:46:27.579787"], ["updated_at", "2015-07-16 20:46:27.579787"]] +  (0.4ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.582009"], ["updated_at", "2015-07-16 20:46:27.582009"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "cross-platform"], ["created_at", "2015-07-16 20:46:27.583859"], ["updated_at", "2015-07-16 20:46:27.583859"]] +  (0.3ms) COMMIT +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "tags" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "wireless"], ["created_at", "2015-07-16 20:46:27.585567"], ["updated_at", "2015-07-16 20:46:27.585567"]] +  (0.3ms) COMMIT + Question Load (0.4ms) SELECT "questions".* FROM "questions" + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (13.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 1], ["tag_id", 216], ["created_at", "2015-07-16 20:46:27.604669"], ["updated_at", "2015-07-16 20:46:27.604669"]] +  (0.5ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 2], ["tag_id", 68], ["created_at", "2015-07-16 20:46:27.626912"], ["updated_at", "2015-07-16 20:46:27.626912"]] +  (0.3ms) COMMIT + Tag Load (1.2ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 3], ["tag_id", 236], ["created_at", "2015-07-16 20:46:27.635248"], ["updated_at", "2015-07-16 20:46:27.635248"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 4], ["tag_id", 5], ["created_at", "2015-07-16 20:46:27.642942"], ["updated_at", "2015-07-16 20:46:27.642942"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (1.7ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 5], ["tag_id", 76], ["created_at", "2015-07-16 20:46:27.651782"], ["updated_at", "2015-07-16 20:46:27.651782"]] +  (0.3ms) COMMIT + Tag Load (1.0ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 6], ["tag_id", 140], ["created_at", "2015-07-16 20:46:27.660735"], ["updated_at", "2015-07-16 20:46:27.660735"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 7], ["tag_id", 246], ["created_at", "2015-07-16 20:46:27.668031"], ["updated_at", "2015-07-16 20:46:27.668031"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 8], ["tag_id", 206], ["created_at", "2015-07-16 20:46:27.675324"], ["updated_at", "2015-07-16 20:46:27.675324"]] +  (0.7ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 9], ["tag_id", 86], ["created_at", "2015-07-16 20:46:27.683122"], ["updated_at", "2015-07-16 20:46:27.683122"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 10], ["tag_id", 117], ["created_at", "2015-07-16 20:46:27.690257"], ["updated_at", "2015-07-16 20:46:27.690257"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 11], ["tag_id", 282], ["created_at", "2015-07-16 20:46:27.697328"], ["updated_at", "2015-07-16 20:46:27.697328"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 12], ["tag_id", 225], ["created_at", "2015-07-16 20:46:27.704850"], ["updated_at", "2015-07-16 20:46:27.704850"]] +  (0.3ms) COMMIT + Tag Load (1.0ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 13], ["tag_id", 128], ["created_at", "2015-07-16 20:46:27.713676"], ["updated_at", "2015-07-16 20:46:27.713676"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 14], ["tag_id", 292], ["created_at", "2015-07-16 20:46:27.721347"], ["updated_at", "2015-07-16 20:46:27.721347"]] +  (0.3ms) COMMIT + Tag Load (1.0ms) SELECT "tags".* FROM "tags" +  (0.3ms) BEGIN + SQL (0.3ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 15], ["tag_id", 278], ["created_at", "2015-07-16 20:46:27.733128"], ["updated_at", "2015-07-16 20:46:27.733128"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 16], ["tag_id", 214], ["created_at", "2015-07-16 20:46:27.740841"], ["updated_at", "2015-07-16 20:46:27.740841"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 17], ["tag_id", 194], ["created_at", "2015-07-16 20:46:27.747703"], ["updated_at", "2015-07-16 20:46:27.747703"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 18], ["tag_id", 127], ["created_at", "2015-07-16 20:46:27.762931"], ["updated_at", "2015-07-16 20:46:27.762931"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 19], ["tag_id", 6], ["created_at", "2015-07-16 20:46:27.770177"], ["updated_at", "2015-07-16 20:46:27.770177"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 20], ["tag_id", 144], ["created_at", "2015-07-16 20:46:27.777930"], ["updated_at", "2015-07-16 20:46:27.777930"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 21], ["tag_id", 214], ["created_at", "2015-07-16 20:46:27.785315"], ["updated_at", "2015-07-16 20:46:27.785315"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 22], ["tag_id", 91], ["created_at", "2015-07-16 20:46:27.792944"], ["updated_at", "2015-07-16 20:46:27.792944"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 23], ["tag_id", 151], ["created_at", "2015-07-16 20:46:27.799896"], ["updated_at", "2015-07-16 20:46:27.799896"]] +  (0.6ms) COMMIT + Tag Load (1.2ms) SELECT "tags".* FROM "tags" +  (0.2ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 24], ["tag_id", 70], ["created_at", "2015-07-16 20:46:27.809335"], ["updated_at", "2015-07-16 20:46:27.809335"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 25], ["tag_id", 129], ["created_at", "2015-07-16 20:46:27.816814"], ["updated_at", "2015-07-16 20:46:27.816814"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 26], ["tag_id", 1], ["created_at", "2015-07-16 20:46:27.823954"], ["updated_at", "2015-07-16 20:46:27.823954"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.2ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 27], ["tag_id", 120], ["created_at", "2015-07-16 20:46:27.831638"], ["updated_at", "2015-07-16 20:46:27.831638"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (1.6ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 28], ["tag_id", 232], ["created_at", "2015-07-16 20:46:27.838924"], ["updated_at", "2015-07-16 20:46:27.838924"]] +  (0.4ms) COMMIT + Tag Load (1.1ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 29], ["tag_id", 87], ["created_at", "2015-07-16 20:46:27.848606"], ["updated_at", "2015-07-16 20:46:27.848606"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 30], ["tag_id", 286], ["created_at", "2015-07-16 20:46:27.855822"], ["updated_at", "2015-07-16 20:46:27.855822"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 61], ["tag_id", 47], ["created_at", "2015-07-16 20:46:27.863831"], ["updated_at", "2015-07-16 20:46:27.863831"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 31], ["tag_id", 278], ["created_at", "2015-07-16 20:46:27.871082"], ["updated_at", "2015-07-16 20:46:27.871082"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 32], ["tag_id", 67], ["created_at", "2015-07-16 20:46:27.878441"], ["updated_at", "2015-07-16 20:46:27.878441"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 33], ["tag_id", 152], ["created_at", "2015-07-16 20:46:27.885697"], ["updated_at", "2015-07-16 20:46:27.885697"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 34], ["tag_id", 125], ["created_at", "2015-07-16 20:46:27.892852"], ["updated_at", "2015-07-16 20:46:27.892852"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 35], ["tag_id", 108], ["created_at", "2015-07-16 20:46:27.902235"], ["updated_at", "2015-07-16 20:46:27.902235"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 36], ["tag_id", 150], ["created_at", "2015-07-16 20:46:27.913601"], ["updated_at", "2015-07-16 20:46:27.913601"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 37], ["tag_id", 160], ["created_at", "2015-07-16 20:46:27.927829"], ["updated_at", "2015-07-16 20:46:27.927829"]] +  (0.3ms) COMMIT + Tag Load (1.3ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 38], ["tag_id", 23], ["created_at", "2015-07-16 20:46:27.937646"], ["updated_at", "2015-07-16 20:46:27.937646"]] +  (0.2ms) COMMIT + Tag Load (1.3ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 39], ["tag_id", 64], ["created_at", "2015-07-16 20:46:27.950471"], ["updated_at", "2015-07-16 20:46:27.950471"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 40], ["tag_id", 27], ["created_at", "2015-07-16 20:46:27.958005"], ["updated_at", "2015-07-16 20:46:27.958005"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 41], ["tag_id", 239], ["created_at", "2015-07-16 20:46:27.965228"], ["updated_at", "2015-07-16 20:46:27.965228"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 42], ["tag_id", 24], ["created_at", "2015-07-16 20:46:27.972173"], ["updated_at", "2015-07-16 20:46:27.972173"]] +  (0.4ms) COMMIT + Tag Load (1.3ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 43], ["tag_id", 276], ["created_at", "2015-07-16 20:46:27.980999"], ["updated_at", "2015-07-16 20:46:27.980999"]] +  (0.4ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 44], ["tag_id", 252], ["created_at", "2015-07-16 20:46:27.989352"], ["updated_at", "2015-07-16 20:46:27.989352"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 45], ["tag_id", 144], ["created_at", "2015-07-16 20:46:27.997970"], ["updated_at", "2015-07-16 20:46:27.997970"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 46], ["tag_id", 204], ["created_at", "2015-07-16 20:46:28.005840"], ["updated_at", "2015-07-16 20:46:28.005840"]] +  (0.3ms) COMMIT + Tag Load (1.0ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 47], ["tag_id", 100], ["created_at", "2015-07-16 20:46:28.013724"], ["updated_at", "2015-07-16 20:46:28.013724"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 48], ["tag_id", 74], ["created_at", "2015-07-16 20:46:28.021024"], ["updated_at", "2015-07-16 20:46:28.021024"]] +  (0.4ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 49], ["tag_id", 204], ["created_at", "2015-07-16 20:46:28.029689"], ["updated_at", "2015-07-16 20:46:28.029689"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 50], ["tag_id", 156], ["created_at", "2015-07-16 20:46:28.037025"], ["updated_at", "2015-07-16 20:46:28.037025"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 51], ["tag_id", 244], ["created_at", "2015-07-16 20:46:28.049673"], ["updated_at", "2015-07-16 20:46:28.049673"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 52], ["tag_id", 57], ["created_at", "2015-07-16 20:46:28.058277"], ["updated_at", "2015-07-16 20:46:28.058277"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 53], ["tag_id", 136], ["created_at", "2015-07-16 20:46:28.065483"], ["updated_at", "2015-07-16 20:46:28.065483"]] +  (0.2ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 54], ["tag_id", 253], ["created_at", "2015-07-16 20:46:28.072736"], ["updated_at", "2015-07-16 20:46:28.072736"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.3ms) BEGIN + SQL (0.3ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 55], ["tag_id", 142], ["created_at", "2015-07-16 20:46:28.080795"], ["updated_at", "2015-07-16 20:46:28.080795"]] +  (0.4ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 56], ["tag_id", 259], ["created_at", "2015-07-16 20:46:28.088476"], ["updated_at", "2015-07-16 20:46:28.088476"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 57], ["tag_id", 54], ["created_at", "2015-07-16 20:46:28.095555"], ["updated_at", "2015-07-16 20:46:28.095555"]] +  (0.3ms) COMMIT + Tag Load (1.1ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 58], ["tag_id", 201], ["created_at", "2015-07-16 20:46:28.103794"], ["updated_at", "2015-07-16 20:46:28.103794"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 59], ["tag_id", 11], ["created_at", "2015-07-16 20:46:28.111584"], ["updated_at", "2015-07-16 20:46:28.111584"]] +  (0.4ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 60], ["tag_id", 211], ["created_at", "2015-07-16 20:46:28.118751"], ["updated_at", "2015-07-16 20:46:28.118751"]] +  (0.4ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 62], ["tag_id", 34], ["created_at", "2015-07-16 20:46:28.125449"], ["updated_at", "2015-07-16 20:46:28.125449"]] +  (0.4ms) COMMIT + Tag Load (1.1ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 63], ["tag_id", 140], ["created_at", "2015-07-16 20:46:28.134503"], ["updated_at", "2015-07-16 20:46:28.134503"]] +  (0.3ms) COMMIT + Tag Load (1.2ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 64], ["tag_id", 173], ["created_at", "2015-07-16 20:46:28.146042"], ["updated_at", "2015-07-16 20:46:28.146042"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 65], ["tag_id", 206], ["created_at", "2015-07-16 20:46:28.154016"], ["updated_at", "2015-07-16 20:46:28.154016"]] +  (0.4ms) COMMIT + Tag Load (1.0ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 66], ["tag_id", 242], ["created_at", "2015-07-16 20:46:28.162129"], ["updated_at", "2015-07-16 20:46:28.162129"]] +  (0.3ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 67], ["tag_id", 18], ["created_at", "2015-07-16 20:46:28.169484"], ["updated_at", "2015-07-16 20:46:28.169484"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 68], ["tag_id", 104], ["created_at", "2015-07-16 20:46:28.177301"], ["updated_at", "2015-07-16 20:46:28.177301"]] +  (0.4ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 69], ["tag_id", 118], ["created_at", "2015-07-16 20:46:28.185451"], ["updated_at", "2015-07-16 20:46:28.185451"]] +  (0.3ms) COMMIT + Tag Load (0.7ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 70], ["tag_id", 250], ["created_at", "2015-07-16 20:46:28.192243"], ["updated_at", "2015-07-16 20:46:28.192243"]] +  (0.5ms) COMMIT + Tag Load (1.1ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 71], ["tag_id", 268], ["created_at", "2015-07-16 20:46:28.201427"], ["updated_at", "2015-07-16 20:46:28.201427"]] +  (0.3ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.2ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 72], ["tag_id", 209], ["created_at", "2015-07-16 20:46:28.210095"], ["updated_at", "2015-07-16 20:46:28.210095"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 73], ["tag_id", 17], ["created_at", "2015-07-16 20:46:28.218438"], ["updated_at", "2015-07-16 20:46:28.218438"]] +  (0.4ms) COMMIT + Tag Load (0.9ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 74], ["tag_id", 60], ["created_at", "2015-07-16 20:46:28.226474"], ["updated_at", "2015-07-16 20:46:28.226474"]] +  (0.4ms) COMMIT + Tag Load (0.8ms) SELECT "tags".* FROM "tags" +  (0.1ms) BEGIN + SQL (0.1ms) INSERT INTO "question_tags" ("question_id", "tag_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["question_id", 75], ["tag_id", 232], ["created_at", "2015-07-16 20:46:28.233885"], ["updated_at", "2015-07-16 20:46:28.233885"]] +  (0.4ms) COMMIT diff --git a/spec/factories/comments.rb b/spec/factories/comments.rb index 477c6a0..7d7f835 100644 --- a/spec/factories/comments.rb +++ b/spec/factories/comments.rb @@ -1,3 +1,4 @@ +# Ross: Your indentation is insane FactoryGirl.define do factory :comment do body "MyString" diff --git a/spec/models/comment_spec.rb b/spec/models/comment_spec.rb index c10688d..4804445 100644 --- a/spec/models/comment_spec.rb +++ b/spec/models/comment_spec.rb @@ -1,5 +1,8 @@ require 'rails_helper' +# Hm, who was using model generators....... +# +# don't commit crap like these RSpec.describe Comment, type: :model do pending "add some examples to (or delete) #{__FILE__}" end diff --git a/steven_notes.md b/steven_notes.md new file mode 100644 index 0000000..a038e5f --- /dev/null +++ b/steven_notes.md @@ -0,0 +1,6 @@ +* Testing: I would have expected some +* Controllers looked nice, but you have a few really complex methods: see tips + on simplifying things from Wed nite +* JavaScript was good eventy stuff for small improvements to a Rails site +* Models looked good; nice use of advanced association magic +