[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
[1m[35m (5.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to CreateArticles (20120416181217)
[1m[35m (0.7ms)[0m BEGIN
[1m[36m (5.1ms)[0m [1mCREATE TABLE "articles" ("id" serial primary key, "updated" timestamp, "title" character varying(255), "content" text, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120416181217"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to CreateContacts (20120424172229)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (4.4ms)[0m [1mCREATE TABLE "contacts" ("id" serial primary key, "name" character varying(255), "subname" character varying(255), "number" character varying(255), "url" character varying(255), "address" character varying(255), "department" character varying(255), "description" text, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120424172229"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to AddFieldsToArticle (20120430224632)
[1m[35m (0.8ms)[0m BEGIN
[1m[36m (0.7ms)[0m [1mALTER TABLE "articles" ADD COLUMN "category" character varying(255)[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "type" int
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "preview" text[0m
[1m[35m (0.7ms)[0m ALTER TABLE "articles" ADD COLUMN "contact_id" int
[1m[36m (0.7ms)[0m [1mALTER TABLE "articles" ADD COLUMN "tags" text[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "service_url" character varying(255)
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120430224632"]]
[1m[35m (0.9ms)[0m COMMIT
Migrating to RenameTypeToContentType (20120430232605)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (0.8ms)[0m ALTER TABLE "articles" RENAME COLUMN "type" TO "content_type"
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120430232605"]]
[1m[35m (0.9ms)[0m COMMIT
Migrating to DeviseCreateUsers (20120501181542)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (4.8ms)[0m CREATE TABLE "users" ("id" serial primary key, "email" character varying(255) DEFAULT '' NOT NULL, "encrypted_password" character varying(255) DEFAULT '' NOT NULL, "reset_password_token" character varying(255), "reset_password_sent_at" timestamp, "remember_created_at" timestamp, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" timestamp, "last_sign_in_at" timestamp, "current_sign_in_ip" character varying(255), "last_sign_in_ip" character varying(255), "created_at" timestamp, "updated_at" timestamp)
[1m[36m (2.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
[1m[35m (2.2ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120501181542"]]
[1m[35m (0.9ms)[0m COMMIT
Migrating to CreateRailsAdminHistoriesTable (20120501181544)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (4.4ms)[0m CREATE TABLE "rails_admin_histories" ("id" serial primary key, "message" text, "username" character varying(255), "item" integer, "table" character varying(255), "month" smallint, "year" bigint, "created_at" timestamp, "updated_at" timestamp)
[1m[36m (2.3ms)[0m [1mCREATE INDEX "index_rails_admin_histories" ON "rails_admin_histories" ("item", "table", "month", "year")[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120501181544"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to AddAdminToUsers (20120501191040)
[1m[35m (0.6ms)[0m BEGIN
[1m[36m (0.7ms)[0m [1mALTER TABLE "users" ADD COLUMN "admin" bool[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120501191040"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
Migrating to AddPublishedToArticle (20120628194351)
[1m[35m (0.4ms)[0m BEGIN
[1m[36m (5.0ms)[0m [1mALTER TABLE "articles" ADD COLUMN "is_published" boolean DEFAULT 'f'[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120628194351"]]
[1m[36m (1.5ms)[0m [1mCOMMIT[0m
Migrating to DeviseCreateAdmins (20120628200512)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (4.6ms)[0m [1mCREATE TABLE "admins" ("id" serial primary key, "email" character varying(255) DEFAULT '' NOT NULL, "encrypted_password" character varying(255) DEFAULT '' NOT NULL, "reset_password_token" character varying(255), "reset_password_sent_at" timestamp, "remember_created_at" timestamp, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" timestamp, "last_sign_in_at" timestamp, "current_sign_in_ip" character varying(255), "last_sign_in_ip" character varying(255), "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35m (2.4ms)[0m CREATE UNIQUE INDEX "index_admins_on_email" ON "admins" ("email")
[1m[36m (2.1ms)[0m [1mCREATE UNIQUE INDEX "index_admins_on_reset_password_token" ON "admins" ("reset_password_token")[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120628200512"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to ModifyAdmin (20120628203747)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.7ms)[0m [1mALTER TABLE "admins" DROP "remember_created_at"[0m
[1m[35m (7.4ms)[0m ALTER TABLE "admins" ADD COLUMN "failed_attempts" integer DEFAULT 5
[1m[36m (0.6ms)[0m [1mALTER TABLE "admins" ADD COLUMN "unlock_token" character varying(255)[0m
[1m[35m (0.6ms)[0m ALTER TABLE "admins" ADD COLUMN "locked_at" timestamp
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120628203747"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to AddSlugToArticles (20120629070448)
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35m (0.7ms)[0m ALTER TABLE "articles" ADD COLUMN "slug" character varying(255)
[1m[36m (2.3ms)[0m [1mCREATE INDEX "index_articles_on_slug" ON "articles" ("slug")[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120629070448"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to CreateFriendlyIdSlugs (20120629072846)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (2.7ms)[0m [1mCREATE TABLE "friendly_id_slugs" ("id" serial primary key, "slug" character varying(255) NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" character varying(40), "created_at" timestamp) [0m
[1m[35m (2.2ms)[0m CREATE INDEX "index_friendly_id_slugs_on_sluggable_id" ON "friendly_id_slugs" ("sluggable_id")
[1m[36m (2.3ms)[0m [1mCREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")[0m
[1m[35m (2.4ms)[0m CREATE INDEX "index_friendly_id_slugs_on_sluggable_type" ON "friendly_id_slugs" ("sluggable_type")
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120629072846"]]
[1m[35m (1.1ms)[0m COMMIT
Migrating to ChangeAdminToPublisherUsers (20120629140930)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (0.6ms)[0m ALTER TABLE "users" RENAME COLUMN "admin" TO "is_moderator"
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120629140930"]]
[1m[35m (1.0ms)[0m COMMIT
Migrating to RenameAdminsToAdministrators (20120629143105)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (0.5ms)[0m ALTER TABLE "admins" RENAME TO "administrators"
[1m[36m (0.5ms)[0m [1mALTER TABLE "admins_id_seq" RENAME TO "administrators_id_seq"[0m
[1m[35m (0.6ms)[0m ALTER INDEX "index_admins_on_email" RENAME TO "index_administrators_on_email"
[1m[36m (0.6ms)[0m [1mALTER INDEX "index_admins_on_reset_password_token" RENAME TO "index_administrators_on_reset_password_token"[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120629143105"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to AddIsAdminToUsers (20120701155314)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (8.2ms)[0m [1mALTER TABLE "users" ADD COLUMN "is_admin" boolean DEFAULT 'f'[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120701155314"]]
[1m[36m (1.5ms)[0m [1mCOMMIT[0m
Migrating to CreateAdminNotes (20120702150748)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (4.8ms)[0m [1mCREATE TABLE "admin_notes" ("id" serial primary key, "resource_id" character varying(255) NOT NULL, "resource_type" character varying(255) NOT NULL, "user_id" integer, "user_type" character varying(255), "body" text, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35m (2.9ms)[0m CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")
[1m[36m (1.9ms)[0m [1mCREATE INDEX "index_admin_notes_on_user_type_and_user_id" ON "admin_notes" ("user_type", "user_id")[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120702150748"]]
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
Migrating to MoveAdminNotesToComments (20120702150749)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.6ms)[0m [1mDROP INDEX "index_admin_notes_on_user_type_and_user_id"[0m
[1m[35m (0.6ms)[0m ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"
[1m[36m (0.5ms)[0m [1mALTER TABLE "admin_notes_id_seq" RENAME TO "active_admin_comments_id_seq"[0m
[1m[35m (0.5ms)[0m ALTER INDEX "index_admin_notes_on_resource_type_and_resource_id" RENAME TO "index_active_admin_comments_on_resource_type_and_resource_id"
[1m[36m (0.6ms)[0m [1mALTER TABLE "active_admin_comments" RENAME COLUMN "user_type" TO "author_type"[0m
[1m[35m (0.5ms)[0m ALTER TABLE "active_admin_comments" RENAME COLUMN "user_id" TO "author_id"
[1m[36m (0.5ms)[0m [1mALTER TABLE "active_admin_comments" ADD COLUMN "namespace" character varying(255)[0m
[1m[35m (2.5ms)[0m CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")
[1m[36m (2.3ms)[0m [1mCREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")[0m
[1m[35m (0.8ms)[0m UPDATE active_admin_comments SET namespace='admin'
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120702150749"]]
[1m[35m (1.1ms)[0m COMMIT
Migrating to DropAdministratorTable (20120702165334)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (1.4ms)[0m DROP TABLE "administrators"
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120702165334"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to AddIsEditorToUsers (20120702171830)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (8.2ms)[0m ALTER TABLE "users" ADD COLUMN "is_editor" boolean DEFAULT 'f'
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120702171830"]]
[1m[35m (1.5ms)[0m COMMIT
Migrating to CreateCategories (20120706171506)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (3.0ms)[0m CREATE TABLE "categories" ("id" serial primary key, "name" character varying(255), "access_count" integer, "created_at" timestamp, "updated_at" timestamp)
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120706171506"]]
[1m[35m (1.0ms)[0m COMMIT
Migrating to AddCategoryReferencesToArticles (20120706172717)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" DROP "category"
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "category_id" integer[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120706172717"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to AddArticleReferencesToCategory (20120706173031)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.5ms)[0m [1mALTER TABLE "categories" ADD COLUMN "article_id" integer[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120706173031"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
Migrating to AddAccessCountToArticles (20120706193649)
[1m[35m (0.4ms)[0m BEGIN
[1m[36m (6.8ms)[0m [1mALTER TABLE "articles" ADD COLUMN "access_count" integer DEFAULT 0[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120706193649"]]
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
Migrating to CreateKeywords (20120707184743)
[1m[35m (0.6ms)[0m BEGIN
[1m[36m (5.8ms)[0m [1mCREATE TABLE "keywords" ("id" serial primary key, "name" character varying(255), "metaphone" character varying(255), "stem" character varying(255), "synonyms" text, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120707184743"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
Migrating to CreateWordcounts (20120707190634)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (2.9ms)[0m [1mCREATE TABLE "wordcounts" ("id" serial primary key, "article_id" integer, "keyword_id" integer, "count" integer, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120707190634"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to CreateDelayedJobs (20120714144317)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (4.9ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" serial primary key, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" timestamp, "locked_at" timestamp, "failed_at" timestamp, "locked_by" character varying(255), "queue" character varying(255), "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35m (2.5ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120714144317"]]
[1m[35m (1.0ms)[0m COMMIT
Migrating to AddDescriptionToCategory (20120727004822)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (2.6ms)[0m ALTER TABLE "categories" ADD COLUMN "description" text
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120727004822"]]
[1m[35m (1.2ms)[0m COMMIT
Migrating to ChangeContentTypeArticles (20120727052215)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (7.2ms)[0m ALTER TABLE "articles" ALTER COLUMN "content_type" TYPE character varying(255)
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120727052215"]]
[1m[35m (1.5ms)[0m COMMIT
Migrating to AddAuthorPictureNameToArticles (20120727124910)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "author_pic_file_name" character varying(255)
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "author_pic_content_type" character varying(255)[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "author_pic_file_size" integer
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "author_pic_updated_at" timestamp[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "author_name" character varying(255)
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "author_link" character varying(255)[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120727124910"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to CreateGuides (20120730225526)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (5.7ms)[0m [1mCREATE TABLE "guides" ("id" serial primary key, "title" character varying(255), "content" text, "preview" text, "contact_id" integer, "tags" text, "category_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35mSQL (1.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120730225526"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to AddTypeToArticles (20120807200215)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (1.1ms)[0m [1mALTER TABLE "articles" ADD COLUMN "type" character varying(255)[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120807200215"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
Migrating to CreateGuideSteps (20120807233918)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (5.1ms)[0m [1mCREATE TABLE "guide_steps" ("id" serial primary key, "article_id" integer, "title" character varying(255), "content" text, "preview" text, "step" integer, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120807233918"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to DropGuidesTable (20120807235112)
[1m[35m (0.8ms)[0m BEGIN
[1m[36m (1.0ms)[0m [1mDROP TABLE "guides"[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20120807235112"]]
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
Migrating to AddSlugsToCategories (20120817231009)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.6ms)[0m [1mALTER TABLE "categories" ADD COLUMN "slug" character varying(255)[0m
[1m[35m (2.2ms)[0m CREATE UNIQUE INDEX "index_categories_on_slug" ON "categories" ("slug")
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20120817231009"]]
[1m[35m (0.9ms)[0m COMMIT
Migrating to AddContentMarkdownToArticles (20121010140714)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "content_md" text
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20121010140714"]]
[1m[35m (1.0ms)[0m COMMIT
Migrating to AddRenderMarkdownToArticle (20121026145929)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (7.5ms)[0m ALTER TABLE "articles" ADD COLUMN "render_markdown" boolean DEFAULT 't'
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20121026145929"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to AddDivisionOfContentFieldsToArticles (20121028193745)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (0.7ms)[0m ALTER TABLE "articles" ADD COLUMN "content_main" text
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "content_main_extra" text[0m
[1m[35m (0.5ms)[0m ALTER TABLE "articles" ADD COLUMN "content_need_to_know" text
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20121028193745"]]
[1m[35m (0.8ms)[0m COMMIT
Migrating to CreateDepartments (20121106123303)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (4.7ms)[0m CREATE TABLE "departments" ("id" serial primary key, "name" character varying(255), "acronym" character varying(255), "created_at" timestamp, "updated_at" timestamp)
[1m[36m (0.7ms)[0m [1mALTER TABLE "users" ADD COLUMN "department_id" integer[0m
[1m[35mSQL (1.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20121106123303"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to FixNamingConventionsOnRoles (20121107003920)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.6ms)[0m [1mALTER TABLE "users" RENAME COLUMN "is_editor" TO "is_writer"[0m
[1m[35m (0.7ms)[0m ALTER TABLE "users" RENAME COLUMN "is_moderator" TO "is_editor"
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20121107003920"]]
[1m[35m (1.1ms)[0m COMMIT
Migrating to AddStatusToArticles (20121107014855)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35m (7.3ms)[0m ALTER TABLE "articles" ADD COLUMN "status" character varying(255) DEFAULT 'Draft'
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20121107014855"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to AddUserIdToArticle (20121107020439)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (0.7ms)[0m ALTER TABLE "articles" ADD COLUMN "user_id" integer
[1m[36m (2.6ms)[0m [1mCREATE INDEX "index_articles_on_user_id" ON "articles" ("user_id")[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20121107020439"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
Migrating to RemoveIsPublishedFieldFromArticles (20121108074632)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.9ms)[0m [1mALTER TABLE "articles" DROP "is_published"[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20121108074632"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to AddLangContentToArticle (20140527211609)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (0.7ms)[0m [1mALTER TABLE "articles" ADD COLUMN "title_es" character varying(255)[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "preview_es" text
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "content_main_es" text[0m
[1m[35m (0.7ms)[0m ALTER TABLE "articles" ADD COLUMN "title_cn" character varying(255)
[1m[36m (0.6ms)[0m [1mALTER TABLE "articles" ADD COLUMN "preview_cn" text[0m
[1m[35m (0.6ms)[0m ALTER TABLE "articles" ADD COLUMN "content_main_cn" text
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140527211609"]]
[1m[35m (1.1ms)[0m COMMIT
Migrating to UpgradeToFriendlyIdFive (20140612192304)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (2.9ms)[0m ALTER TABLE "friendly_id_slugs" ADD COLUMN "scope" character varying(255)
[1m[36m (0.6ms)[0m [1mDROP INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type"[0m
[1m[35m (2.4ms)[0m CREATE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")
[1m[36m (2.2ms)[0m [1mCREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope" ON "friendly_id_slugs" ("slug", "sluggable_type", "scope")[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140612192304"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
Migrating to RemoveSubnameFromContacts (20140805001628)
[1m[35m (0.6ms)[0m BEGIN
[1m[36m (0.7ms)[0m [1mALTER TABLE "contacts" DROP "subname"[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140805001628"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35mActiveRecord::SchemaMigration Load (0.7ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Started GET "/" for 10.0.2.2 at 2014-08-15 19:13:19 +0000
[1m[36mActiveRecord::SchemaMigration Load (1.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by HomeController#index as HTML
[1m[35mCategory Load (7.3ms)[0m SELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (76.2ms)
Completed 200 OK in 3055ms (Views: 2998.0ms | ActiveRecord: 12.9ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 19:13:30 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 53ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 19:13:30 +0000
Processing by HomeController#index as */*
[1m[36mCategory Load (2.8ms)[0m [1mSELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4[0m
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (398.3ms)
Completed 200 OK in 1965ms (Views: 1914.6ms | ActiveRecord: 8.5ms)
Started GET "/search?q=wuttt" for 10.0.2.2 at 2014-08-15 19:13:33 +0000
Processing by SearchController#index as HTML
Parameters: {"q"=>"wuttt"}
[1m[33mArticle Search (24.8ms)[0m curl http://localhost:9200/articles_development/_search?pretty -d '{"query":{"dis_max":{"queries":[{"match":{"_all":{"query":"wuttt","operator":"and","boost":10,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"wuttt","operator":"and","boost":10,"analyzer":"searchkick_search2"}}},{"match":{"_all":{"query":"wuttt","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"wuttt","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search2"}}}]}},"size":100000,"from":0,"fields":[]}'
Completed 500 Internal Server Error in 224ms
Searchkick::MissingIndexError (Index missing - run Article.reindex):
app/controllers/search_controller.rb:8:in `index'
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.8ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 19:13:37 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
[1m[36mArticle Load (2.9ms)[0m [1mSELECT "articles".* FROM "articles"[0m
Started GET "/" for 10.0.2.2 at 2014-08-15 19:47:19 +0000
Started GET "/" for 10.0.2.2 at 2014-08-15 19:47:19 +0000
[1m[36mActiveRecord::SchemaMigration Load (2.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by HomeController#index as HTML
[1m[36mActiveRecord::SchemaMigration Load (2.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by HomeController#index as HTML
[1m[35mCategory Load (6.2ms)[0m SELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (1.7ms)
Rendered home/index.html.erb within layouts/application (117.1ms)
[1m[35mCategory Load (2.9ms)[0m SELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4
Rendered home/_category.html.erb (0.2ms)
Rendered shared/_autocomplete.html.erb (2.4ms)
Rendered home/index.html.erb within layouts/application (136.0ms)
Completed 200 OK in 1877ms (Views: 1786.1ms | ActiveRecord: 12.8ms)
Completed 200 OK in 1702ms (Views: 1620.8ms | ActiveRecord: 13.2ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 19:47:28 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 23ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 19:47:28 +0000
Processing by HomeController#index as */*
[1m[36mCategory Load (2.0ms)[0m [1mSELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4[0m
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (1.0ms)
Rendered home/index.html.erb within layouts/application (386.8ms)
Completed 200 OK in 1751ms (Views: 1720.6ms | ActiveRecord: 6.9ms)
[1m[36mArticle Load (1.7ms)[0m [1mSELECT "articles".* FROM "articles"[0m
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mArticle Exists (2.6ms)[0m SELECT 1 AS one FROM "articles" WHERE ("articles"."id" IS NOT NULL) AND "articles"."slug" = 'wut' LIMIT 1
[1m[36mSQL (1.8ms)[0m [1mINSERT INTO "articles" ("created_at", "slug", "title", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["created_at", "2014-08-15 20:03:47.358972"], ["slug", "wut"], ["title", "wut"], ["updated_at", "2014-08-15 20:03:47.358972"]]
[1m[35m (1.0ms)[0m COMMIT
Started GET "/" for 10.0.2.2 at 2014-08-15 20:04:03 +0000
[1m[36mActiveRecord::SchemaMigration Load (1.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by HomeController#index as HTML
[1m[35mCategory Load (4.0ms)[0m SELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4
Rendered home/_category.html.erb (0.2ms)
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (67.6ms)
Completed 200 OK in 1398ms (Views: 1349.6ms | ActiveRecord: 8.6ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 20:04:11 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 19ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 20:04:12 +0000
Processing by HomeController#index as */*
[1m[36mCategory Load (2.1ms)[0m [1mSELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4[0m
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (1.0ms)
Rendered home/index.html.erb within layouts/application (343.4ms)
Completed 200 OK in 2223ms (Views: 2171.2ms | ActiveRecord: 7.3ms)
Started GET "/admin" for 10.0.2.2 at 2014-08-15 20:04:15 +0000
Processing by Admin::DashboardController#index as HTML
Completed 401 Unauthorized in 19ms
Started GET "/users/sign_in" for 10.0.2.2 at 2014-08-15 20:04:15 +0000
Processing by SessionsController#new as HTML
Rendered devise/shared/_links.erb (1.8ms)
Rendered devise/sessions/new.html.erb within layouts/application (104.1ms)
Rendered shared/_search_form.html.erb (1.5ms)
Completed 200 OK in 339ms (Views: 313.0ms | ActiveRecord: 4.1ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 20:04:21 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 29ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 20:04:21 +0000
Processing by HomeController#index as */*
[1m[36mCategory Load (2.3ms)[0m [1mSELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4[0m
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (0.9ms)
Rendered home/index.html.erb within layouts/application (344.9ms)
[1m[36mUser Load (3.0ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
Completed 200 OK in 1722ms (Views: 1692.2ms | ActiveRecord: 7.8ms)
[1m[35mUser Load (1.2ms)[0m SELECT "users".* FROM "users"
Started POST "/users/sign_in" for 10.0.2.2 at 2014-08-15 20:04:44 +0000
Processing by SessionsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"HzdSrtlhK8r4fYet8TvWsBAa9ULqcXxmhqvEkD4BWQc=", "user"=>{"email"=>"admin@answers.gsa.io", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
[1m[35mUser Load (1.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = 'admin@answers.gsa.io' ORDER BY "users"."id" ASC LIMIT 1
Completed 401 Unauthorized in 18ms
Processing by SessionsController#new as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"HzdSrtlhK8r4fYet8TvWsBAa9ULqcXxmhqvEkD4BWQc=", "user"=>{"email"=>"admin@answers.gsa.io", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
Rendered devise/shared/_links.erb (1.8ms)
Rendered devise/sessions/new.html.erb within layouts/application (71.5ms)
Rendered shared/_search_form.html.erb (1.5ms)
Completed 200 OK in 364ms (Views: 280.6ms | ActiveRecord: 0.0ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 20:04:50 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 25ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 20:04:50 +0000
Processing by HomeController#index as */*
[1m[36mCategory Load (2.5ms)[0m [1mSELECT DISTINCT "categories".* FROM "categories" INNER JOIN "articles" ON "articles"."category_id" = "categories"."id" WHERE "articles"."status" = 'Published' ORDER BY name ASC, access_count DESC LIMIT 4[0m
Rendered home/_category.html.erb (0.1ms)
Rendered shared/_autocomplete.html.erb (0.8ms)
Rendered home/index.html.erb within layouts/application (448.9ms)
Completed 200 OK in 1987ms (Views: 1953.1ms | ActiveRecord: 7.4ms)
PG::UndefinedTable: ERROR: relation "questions" does not exist
LINE 5: WHERE a.attrelid = '"questions"'::regclass
^
: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
FROM pg_attribute a LEFT JOIN pg_attrdef d
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
WHERE a.attrelid = '"questions"'::regclass
AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum
[1m[36mActiveRecord::SchemaMigration Load (1.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to CreateAnswers (20140717165411)
[1m[35m (0.5ms)[0m BEGIN
[1m[36m (25.9ms)[0m [1mCREATE TABLE "answers" ("id" serial primary key, "need_to_know" text, "text" text, "url" character varying(255), "in_language" character varying(255), "question_id" integer, "created_at" timestamp, "updated_at" timestamp) [0m
[1m[35m (1.8ms)[0m CREATE INDEX "index_answers_on_question_id" ON "answers" ("question_id")
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140717165411"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to CreateQuestions (20140717170311)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (5.9ms)[0m CREATE TABLE "questions" ("id" serial primary key, "text" character varying(255), "url" character varying(255), "in_language" character varying(255), "created_at" timestamp, "updated_at" timestamp)
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140717170311"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to RemoveUrlFromAnswer (20140718162526)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (3.5ms)[0m ALTER TABLE "answers" DROP "url"
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140718162526"]]
[1m[35m (0.8ms)[0m COMMIT
Migrating to RemoveUrlFromQuestion (20140718162552)
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35m (1.2ms)[0m ALTER TABLE "questions" DROP "url"
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140718162552"]]
[1m[35m (0.8ms)[0m COMMIT
Migrating to AddAuthenticationTokenToUsers (20140721194324)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (1.9ms)[0m ALTER TABLE "users" ADD COLUMN "authentication_token" character varying(255)
[1m[36m (3.1ms)[0m [1mCREATE INDEX "index_users_on_authentication_token" ON "users" ("authentication_token")[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140721194324"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
Migrating to DropArticlesTable (20140806160418)
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140806160418"]]
[1m[35m (1.3ms)[0m COMMIT
Migrating to DropCategoriesTable (20140808153110)
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140808153110"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to DropKeywordsTable (20140808153128)
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140808153128"]]
[1m[35m (1.0ms)[0m COMMIT
Migrating to DropContactsTable (20140808153208)
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140808153208"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
Migrating to DropGuideStepsTable (20140808153240)
[1m[35m (1.1ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140808153240"]]
[1m[35m (0.8ms)[0m COMMIT
Migrating to DropDepartmentsTable (20140808153305)
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140808153305"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35mActiveRecord::SchemaMigration Load (1.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:43.926555"], ["in_language", "en"], ["text", "Can I revise my City job application?"], ["updated_at", "2014-08-15 20:34:43.926555"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.172358"], ["in_language", "en"], ["need_to_know", "If you're in the process of applying, you can save your application as you go and ahead any edit part you please. You can even use past applications for new job openings so you don't need to re-enter every single past employment. But once you've hit submit it's \"bon voyage.\""], ["question_id", 1], ["text", "Once you've hit that submit button, your application is locked in. However, you can save and edit applications for jobs that you are currently applying to as well as revise old applications and use them to apply to new jobs. "], ["updated_at", "2014-08-15 20:34:44.172358"]]
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.341310"], ["in_language", "en"], ["text", "How do I get a motorcycle license?"], ["updated_at", "2014-08-15 20:34:44.341310"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (2.1ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.399621"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 2], ["text", "Visit the [Motorcycle License Checklist][1] page at the California Department of Motor Vehicles. [1]: http://www.dmv.ca.gov/dl/checklists/mc.htm"], ["updated_at", "2014-08-15 20:34:44.399621"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.416041"], ["in_language", "en"], ["text", "Can a person clear their criminal record? How?"], ["updated_at", "2014-08-15 20:34:44.416041"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.427056"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 3], ["text", "You can expunge -- or clear convictions from -- your criminal record by petitioning the state in which you were convicted, or the federal government. If you were convicted of crime in the State of California, instructions for the process of filing a Petition for Dismissal are [here][1] and [here][2]. [1]: http://www.courts.ca.gov/1070.htm [2]: http://www.saccourt.ca.gov/criminal/docs/1203-4-dismissal-process.pdf"], ["updated_at", "2014-08-15 20:34:44.427056"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.439364"], ["in_language", "en"], ["text", "Can I submit my resume for any future City job openings?"], ["updated_at", "2014-08-15 20:34:44.439364"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.451943"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 4], ["text", "You can file a [Job Interest Card][1] for a specific department within the City of Oakland. After you've filed one you'll get an email when a job opens in that department so you can apply. You cannot file one for a specific job--only by department. Job interest cards last 12 months and then you'll need to re-file them at the above link. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm?action=openjobrequest"], ["updated_at", "2014-08-15 20:34:44.451943"]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.466111"], ["in_language", "en"], ["text", "Who do I contact if I found a dog?"], ["updated_at", "2014-08-15 20:34:44.466111"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.480680"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 5], ["text", "The city of Oakland's Animal Services is part of the Oakland Police Department. If you find a dog that you can not keep until you find its owner, call the Oakland Police Department non-emergency number: (510)-777-3333. Open 24 hours per day and 7 days per week. "], ["updated_at", "2014-08-15 20:34:44.480680"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.1ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.493492"], ["in_language", "en"], ["text", "Who do I need to inform if I change my address?"], ["updated_at", "2014-08-15 20:34:44.493492"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.506388"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 6], ["text", "The City of Oakland does not need to be informed if you change your address, but you may need to contact other government entities if: 1) You've moved and need to change your mailing address. In this case, contact the US Postal Service [here](https://moversguide.usps.com/icoa/home/icoa-main-flow.do?execution=e1s1&_flowId=icoa-main-flow&referral=MG80). 2) You need to change the address on your drivers license. In this case, contact the CA DMV [here](http://www.dmv.ca.gov/faq/genfaq.htm#CHANGEADDRESS). 3) You need to change your voter registration. In this case, find information about how to register online at the CA Secretary of State [here](https://rtv.sos.ca.gov/elections/register-to-vote/). (Note: You need to go through the whole re-registration process even if you are already registered and simply need to change your address. There is a spot to indicate that you are already registered at another address)."], ["updated_at", "2014-08-15 20:34:44.506388"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.518990"], ["in_language", "en"], ["text", "Where are the public swimming pools in Oakland?"], ["updated_at", "2014-08-15 20:34:44.518990"]]
[1m[36m (1.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.531686"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 7], ["text", "You can find six public pools in Oakland. - Defremery Pool - 1269 18th Street (510) 238-2205 - East Oakland Sports Center - 9161 Edes Avenue (510) 615-5838 - Fremont Pool - 4550 Foothill Blvd (510) 535-5614 - Lions Pool - 3860 Hanly Road (510) 482-7852 - Live Oak Pool - 1055 MacArthur Blvd (510) 238-2292 - Temescal Pool - 371 45th Street (510) 597-5013 "], ["updated_at", "2014-08-15 20:34:44.531686"]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (1.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.543401"], ["in_language", "en"], ["text", "How do I get an Oakland ID card?"], ["updated_at", "2014-08-15 20:34:44.543401"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (1.0ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.556164"], ["in_language", "en"], ["need_to_know", "
Before your visit, you can {{must??}} make a 30-minute appointment online or by phone.
Oakland's city ID card is identification accepted and respected as a valid residency card by Oakland Police Department, BART Police, Alameda County Sheriffs and other local authorities {{what about city/state/federal service agencies?}}.
Accepted proof of residency must show your name (or your spouse's, if you bring a certified copy of your marriage certificate {{where do you get this?? what does it cost?? what about civil unions/domestic partnerships??}} and Oakland address, and be dated within the last 30 days:
- Utility or services bill
- Local property tax statement
- Mortgage payment {{that doesn't make sense, shouldn't it be a mortgage interest payment invoice?}}
- Bank statement
- Pay stub
- Jury summons or court order
- Federal or state income tax or refund statement
- Insurance bill
- Proof of a minor currently enrolled in a local school
- Written verification by an Oakland-funded {{how are people supposed to know what's Oakland-funded versus county- or state-funded??}} homeless shelter, hospital, health clinic or social services agency of at least 15 days of residency
Accepted proof of identity:
- US Permanent Resident Card (\"Green Card\")
- Current US Driver License
- Current US State Issued ID
- Current US Military Service ID
- Mexican Matricula Consular Identification Card
- Foreign Government Issued National ID Card
- Foreign Passport
- Foreign Driver License
- Foreign Military Service ID
- Consular Identification Card
If you're 18 and over and provide one of the first six documents above, you can also apply to activate your city ID for use as a pre-paid debit card. Be aware that pre-paid debit card services carry both monthly and transactional fees that the vendor estimates range from a low end of $15 to a high end of over $27 per month.
"], ["question_id", 8], ["text", "You can apply for a city ID card in person at the City Center or Fruitvale office of SF Global LLC, the private company the city has contracted with to provide this service. Oakland's city ID card is available for purchase by Oakland residents 18 years and up {{?? website implies the card is available for at least some minors because it states that the optional financial services are available only to applicants 18 or older}} with proof of residency and identity.
"], ["updated_at", "2014-08-15 20:34:44.556164"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.578538"], ["in_language", "en"], ["text", "What can I do when one or more neighbors start to erect large, all enclosing fences? "], ["updated_at", "2014-08-15 20:34:44.578538"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.589614"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 9], ["text", "Installing of an over-sized fence requires a permit from building services. For reasons of fire safety and for neighborhood appearance, fences in front yards are limited to a height of three and a half feet, which is the same or six inches higher than fences allowed in many nearby cities in the Bay Area. Fencing in the back and along the sides of a house can be much taller. Visit the Planning and Building Department's [Permit information page][1] for more information. Although it is best to solve neighborhood issues in local groups and neighborhood associations, complaints can be sent to building services and these may result in fines for alternations without permits or variances. To file a Code Enforcement complaint, call (510) 238-3381 or visit the [City Code Enforcement][2] page. [1]: http://www2.oaklandnet.com/Government/o/PBN/OurServices/permits/ [2]: http://www2.oaklandnet.com/Government/o/PBN/OurServices/CityCodeEnforcement/index.htm "], ["updated_at", "2014-08-15 20:34:44.589614"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.601207"], ["in_language", "en"], ["text", "Can I plant a tree in a park?"], ["updated_at", "2014-08-15 20:34:44.601207"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.611353"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 10], ["text", "You cannot plant a tree in a public park. "], ["updated_at", "2014-08-15 20:34:44.611353"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.626208"], ["in_language", "en"], ["text", "How can I help the homeless?"], ["updated_at", "2014-08-15 20:34:44.626208"]]
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.637140"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 11], ["text", "There are are a number of ways that Oaklanders can help the homeless. You can be involved in city policy, volunteer, make donations, and become an advocate. Throughout the year, the City partners with local organizations for a variety of events. Oakland’s Permanent Access to Housing (PATH) Strategy provides a roadmap for ending homelessness in the City over a period of the next fifteen years. "], ["updated_at", "2014-08-15 20:34:44.637140"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.650316"], ["in_language", "en"], ["text", "How Many People Live In Oakland?"], ["updated_at", "2014-08-15 20:34:44.650316"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.662712"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 12], ["text", "The 2010 Census reported Oakland's population as 390,724. The California Department of Finance has estimated Oakland's population on January 1, 2013, as 399,326."], ["updated_at", "2014-08-15 20:34:44.662712"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.676339"], ["in_language", "en"], ["text", "What Council District am I in?"], ["updated_at", "2014-08-15 20:34:44.676339"]]
[1m[36m (1.5ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.687727"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 13], ["text", "Go to [http://mapgis.oaklandnet.com/councildistricts/][1] and enter your address. The map shows how the city is divided into 7 council districts - you can click into any district to see the Councilmember, or you can enter your address in the locator field to see the result. The Councilmember contact information is displayed. [1]: http://mapgis.oaklandnet.com/councildistricts/"], ["updated_at", "2014-08-15 20:34:44.687727"]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.698753"], ["in_language", "en"], ["text", "Where can I view a live webcast of City Council Meetings?"], ["updated_at", "2014-08-15 20:34:44.698753"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.708684"], ["in_language", "en"], ["need_to_know", "The City of Oakland website can be found at http://www2.oaklandnet.com/"], ["question_id", 14], ["text", " [Oaklandnet.com][1] features [live (real-time streaming) as well as archived video.][2] Streaming video is available in the following formats. View the system requirements below to select the one that is best for you. (Live) [Microsoft Silverlight Users][3] (for PC and Macintosh) (Live) [Realplayer Users][4] Archived Videos and Agendas of the Oakland City Council: [Click here to view agendas, minutes and videos from past Council meetings.][5] [1]: http://www.Oaklandnet.com [2]: http://www2.oaklandnet.com/Government/o/CityCouncil/s/VideoArchive/index.htm [3]: http://oakland.granicus.com/MediaPlayer.php?publish_id=2 [4]: http://helixvideosvr.oaklandnet.com/ramgen/broadcast/encoderstream.rm [5]: http://oakland.legistar.com/calendar.aspx"], ["updated_at", "2014-08-15 20:34:44.708684"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.724830"], ["in_language", "en"], ["text", "How do I report drug dealing?"], ["updated_at", "2014-08-15 20:34:44.724830"]]
[1m[36m (1.5ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.736165"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 15], ["text", "If there is drug dealing in progress you can report it to the Oakland Police Departments non-emergency number -- **510-777-3333**. Make sure to get the incident number. You can also call the Drug Hotline -- **510-238-DRUG/ 238-3784** drug dealing tip-line – you can leave a recorded message that police use for follow-up and to note chronic drug dealing hot spots. Give as much information as possible including gender, race, age, height, weight, clothing, possible location of drugs and associated vehicles."], ["updated_at", "2014-08-15 20:34:44.736165"]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.748108"], ["in_language", "en"], ["text", "Do I need a permit to throw a party?"], ["updated_at", "2014-08-15 20:34:44.748108"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (1.1ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.762271"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 16], ["text", "**Times when you DON'T need an event permit** If you are having a party **on you own property** (whether it's inside or outside, whether you rent or own) you don't need a permit to play amplified music or serve alcohol. ---------- **Times when you WILL need an event permit** There are times when you will need a **special permit** to hold an event. Conditions that require a special event permit include: - an event that is open to the public with 50 or more people will be in attendance - events that require street closures (e.g. a block party) - a party where people will be drinking alcohol outside of private property - a party with amplified sound that can be heard beyond your own property ---------- **How to get the permits you need** If you think your party meets the qualifications above then you will need **at least one permit from the City, maybe more.** Almost **all** events require a permit from the Special Activities unit of the City Administrator's Office. In most (not all) cases, you are going to need to prove that you have liability insurance for your proposed event. You can apply for a permit by contacting either of the following staff people: - Nancy Marcus - 510-238-3294 - nmarcus@oaklandnet.com - Jasmine Chan - 510-238-6914 - jchan@oaklandnet.com If your party is going to require a **street closure** then you must you must file an application with the Special Event Unit of the Oakland Police Department. Be sure to file the application with OPD **at least 30 days prior to your event**. To hold a party in a public space (e.g. a City park) you will need to request a reservation with the Office of Parks and Recreation by phone at 510-238-3187 or by email at oprscheduling@oaklandnet.com. "], ["updated_at", "2014-08-15 20:34:44.762271"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.777158"], ["in_language", "en"], ["text", "Who do I contact to get a space at a Farmer's Market?"], ["updated_at", "2014-08-15 20:34:44.777158"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.789378"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 17], ["text", "There are different organizations that run the various farmer's markets throughout the city. You can find the contact information for specific farmer's markets through the California Certified Farmer's Market website. [http://www.cafarmersmarkets.com/index.cfm][1] [1]: http://www.cafarmersmarkets.com/index.cfm"], ["updated_at", "2014-08-15 20:34:44.789378"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.799044"], ["in_language", "en"], ["text", "Where is City Hall located?"], ["updated_at", "2014-08-15 20:34:44.799044"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.809171"], ["in_language", "en"], ["need_to_know", "Oakland City Hall is conveniently located right off the BART line at the 12th Street/City Center station. For more information about schedules and for a map of the system, visit BART at [www.bart.gov][1] or call (510) 464-7133 (TDD#: (510) 839-2218). City Hall is also accessible via several different bus lines run by AC Transit. For more information about schedules and a system map, visit AC Transit at [www.actransit.org][2] or call (510) 891-4706 (TDD#: (510) 428-2266). Bus lines that serve City Hall include: 1, 1R, 11, 12, 18, 26, 72, 72R, 72M, 58L, 51A and the [free Broadway Shuttle][3]. [1]: http://www.bart.gov [2]: http://www.actransit.dst.cs.us [3]: http://www.meetdowntownoak.com/shuttle.php"], ["question_id", 18], ["text", "**Oakland City Hall**
1 Frank H. Ogawa Plaza
Oakland, CA 94612 [![map of oakland city hall][1]](http://mapq.st/146TJoF)
Frank H. Ogawa plaza is located on 14th street, between Broadway and Clay. [1]: http://i.imgur.com/DKkMn9M.png "], ["updated_at", "2014-08-15 20:34:44.809171"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.824073"], ["in_language", "en"], ["text", "How can I report students who are skipping school?"], ["updated_at", "2014-08-15 20:34:44.824073"]]
[1m[36m (1.6ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.836830"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 19], ["text", "Truancy Reporting: To report and get help for youth not in school, phone the following. OUSD Police Non-Emergency Line: **510-874-7777**. Be sure to describe youth, their clothing, their location, their activity (any drugs or alcohol use) when calling in. For questions to OUSD police, email: **police@ousd.k12.ca.us** "], ["updated_at", "2014-08-15 20:34:44.836830"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.847167"], ["in_language", "en"], ["text", "How do I get a replacement birth certificate?"], ["updated_at", "2014-08-15 20:34:44.847167"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (1.0ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.857748"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 20], ["text", "You have to request a replacement birth certificate from the county where you were born. If you were born in Alameda County, you can find directions for ordering replacement birth certificates [here][1]. [1]: http://www.acgov.org/auditor/clerk/birth2b.htm"], ["updated_at", "2014-08-15 20:34:44.857748"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.869006"], ["in_language", "en"], ["text", "How do I contact my Councilmember?"], ["updated_at", "2014-08-15 20:34:44.869006"]]
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.881919"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 21], ["text", "If you know who your councilmember is, you can go to: http://www2.oaklandnet.com/Government/o/ElectedOfficials/index.htm and click on the link for your member. This will take you to a website for that council member and information on who to contact their office , along with support staff If you don't know your representative, you can go to: http://mapgis.oaklandnet.com/councildistricts/ and enter your address for find the link for your representative."], ["updated_at", "2014-08-15 20:34:44.881919"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.892174"], ["in_language", "en"], ["text", "How do I rent a facility?"], ["updated_at", "2014-08-15 20:34:44.892174"]]
[1m[36m (1.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.902906"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 22], ["text", "Please call Central Reservations at (510) 238-3187 or review our [Rental Facilities page][1] for additional information. [1]: http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm"], ["updated_at", "2014-08-15 20:34:44.902906"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.915278"], ["in_language", "en"], ["text", "How do I start residential garbage and recycling service in Oakland?"], ["updated_at", "2014-08-15 20:34:44.915278"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.925592"], ["in_language", "en"], ["need_to_know", "To establish residential garbage services and green waste pickup in Oakland: - **If you own your home:** contact Waste Management of Alameda County at (510) 613-8710 to start weekly garbage and yard trimmings/food scraps collection service. - **If you are renting:** contact your landlord or property manager to start weekly garbage and yard trimmings/food scraps collection service. To start weekly recycling collection service for both owners and renters, contact your recycling company: - **North and West Oakland:** Recycling service is provided by California Waste Solutions. Call (510) 836-6200 to subscribe for service or to request a cart. - **East Oakland:** Recycling service is provided by Waste Management of Alameda County. Call (510) 613-8710 to subscribe for service or to request a cart."], ["question_id", 23], ["text", ""], ["updated_at", "2014-08-15 20:34:44.925592"]]
[1m[35m (1.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.938975"], ["in_language", "en"], ["text", "Where can I receive language assistance?"], ["updated_at", "2014-08-15 20:34:44.938975"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.948602"], ["in_language", "en"], ["need_to_know", "The Equal Access Office provides many kinds of language assistance to Oakland residents. [This webpage on the City's website][1] has a list of Language Assistance accommodations, that include: - How to know which city services have language assistance provided - A printable card you can carry with you to help city staff know that you need help in a language other than English **You can contact the Office of Equal Access for more information**
150 Frank H. Ogawa Plaza, 2nd Floor, Oakland, CA 94612
phone: (510) 238-6813
[equalaccess@oaklandnet.com][2] [1]: http://www2.oaklandnet.com/Government/o/HumanResources/o/EqualAccess/DOWD000747 [2]: mailto:equalaccess@oaklandnet.com"], ["question_id", 24], ["text", "Language assistance can also include: - Interpreters - Assistance from a bilingual staff member (who has received appropriate training) - Multimedia resources (for example, a multilingual CD-Rom) - Multilingual information on web sites - Multilingual telephone information - Translated printed materials"], ["updated_at", "2014-08-15 20:34:44.948602"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.962654"], ["in_language", "en"], ["text", "How much is the City’s total budget?"], ["updated_at", "2014-08-15 20:34:44.962654"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.971710"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 25], ["text", "The City’s annual budget across all funds for the current fiscal year (FY 2012-13) is about $1 billion."], ["updated_at", "2014-08-15 20:34:44.971710"]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:44.984531"], ["in_language", "en"], ["text", "How do I report an abandoned vehicle?"], ["updated_at", "2014-08-15 20:34:44.984531"]]
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:44.994327"], ["in_language", "en"], ["need_to_know", "To report abandoned vehicles parked on a public street for over 72 hours, you can: - Call the Abandoned Auto Detail at (510) 777-8622. - Email the location, description, and license number of the vehicle, if known, to AbandonedAuto@oaklandnet.com. To report an abandoned vehicle parked on private property or a private street, you can: - Call the Vehicle Abatement Detail at (510) 777-8538. The Abandoned Auto Detail operates Monday through Friday, 6am to 4pm. "], ["question_id", 26], ["text", ""], ["updated_at", "2014-08-15 20:34:44.994327"]]
[1m[35m (1.9ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.009328"], ["in_language", "en"], ["text", "What is the City doing to help the homeless?"], ["updated_at", "2014-08-15 20:34:45.009328"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.017801"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 27], ["text", "The City of Oakland's homeless programs provide housing and services to people in Oakland who are homeless, hungry, HIV/AIDS positive, or living on extremely low incomes. Community Housing Services recognizes the tremendous need for services specific to the homeless population. We partner with non-profit organizations to assist the homeless and near-homeless community with homeless prevention, rapid re-housing, permanent supportive housing, shelter, transitional/supportive housing and special needs housing. We also provide other homeless support services such as food, employment, physical and mental health, drug abuse and domestic violence programs."], ["updated_at", "2014-08-15 20:34:45.017801"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (2.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.031103"], ["in_language", "en"], ["text", "How do I request information from the Oakland Police Department"], ["updated_at", "2014-08-15 20:34:45.031103"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.051111"], ["in_language", "en"], ["need_to_know", "Your request will either be fulfilled or denied- if it is denied you will be furnished with details of why the request is not being fulfilled. **Public records include:** - Complaints - Crime Reports - Department publications - Employment contracts - Offense reports - Recordings - List item - Traffic accident reports - Traffic enforcement incidents - Training records "], ["question_id", 28], ["text", "You may request certain types of information from the OPD using an Online, mail or in-person process. We highly suggest the online method. **Online** Step 1: Copy the Public Records [request form][1] to your computer Step 2: Save the PDF document to your computer and then complete the details on the PDF document itself. Step 3: Re-SAVE the PDF on your computer with the details completed. Step 4: Email it to [OPDPublicRecordsRequest@oaklandnet.com][2]. **In-Person** Step 1: Picking up a copy of the form in person at the [Police Administration Building][3] Patrol Desk on the first floor. Step 2: Bring the completed form to the OPD Records Division Kiosk on the first floor of the PAB. The Records Kiosk is open to the public from 8:00 am to 3:00 pm Monday through Friday and from 8:00 am until noon on Saturday and Sunday. **By Mail** Send your completed paper form to: Public Records Request Coordinator Oakland Police Department Records Section 455 7th Street, Room 306 Oakland, CA 94607 Contact Information for Assistance If you need additional assistance with a Public Records request, please contact the Public Records Request Coordinator: (510) 238-7143. [1]: http://www2.oaklandnet.com/Government/o/OPD/s/document/DOWD002885 [2]: http://mailto:OPDPublicRecordsRequest@oaklandnet.com?Subject=RecordsRequest [3]: http://maps.google.com/maps?hl=en&source=hp&ie=UTF8&q=oakland%20police%20department&fb=1&gl=us&hq=police%20department&hnear=oakland&ei=FJrfSrydOYWyswPn-IXoCA&ved=0CCsQnQIwBg&view=map&f=d&daddr=455%207th%20St,%20Oakland,%20CA&geocode=CU8p8gFnSfHUFcnGQAIdCD22-A"], ["updated_at", "2014-08-15 20:34:45.051111"]]
[1m[35m (2.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.078567"], ["in_language", "en"], ["text", "What charter schools are near me?"], ["updated_at", "2014-08-15 20:34:45.078567"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.089309"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 29], ["text", "The [Center for Education Reform][1] can help you find charter schools near you. [This link][2] will show a list of all the charter schools in Oakland. You can also focus the list by choosing the grade level or locations you need. [1]: http://www.edreform.com/in-the-states/know-your-choices/find-a-charter-school/?filter%5Bname%5D=&filter%5Bcity%5D=Oakland&filter%5Bstate%5D=CA&filter%5Bgrade%5D=&filter%5Bgrades_categories%5D=&filter%5Bspecialty%5D= [2]: http://www.edreform.com/in-the-states/know-your-choices/find-a-charter-school/?filter%5Bname%5D=&filter%5Bcity%5D=Oakland&filter%5Bstate%5D=CA&filter%5Bgrade%5D=&filter%5Bgrades_categories%5D=&filter%5Bspecialty%5D="], ["updated_at", "2014-08-15 20:34:45.089309"]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.109044"], ["in_language", "en"], ["text", "What are the parking holidays in Oakland?"], ["updated_at", "2014-08-15 20:34:45.109044"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.173669"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 30], ["text", " The only days when there is no parking enforcement in Oakland are: - New Year's Day (January 1st) - Martin Luther King Jr. Day - President's Day - Memorial Day - Independence Day (July 4th) - Labor Day - Thanksgiving Day - Christmas Day (December 25th)"], ["updated_at", "2014-08-15 20:34:45.173669"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.185588"], ["in_language", "en"], ["text", "How do I get a marriage license?"], ["updated_at", "2014-08-15 20:34:45.185588"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.195697"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 31], ["text", "Alameda County will issue you a marriage license is you and your future spouse request one in-person at the County Clerk-Recorder's Office. You can find more information [here][1]. [1]: http://www.acgov.org/auditor/clerk/ml.htm"], ["updated_at", "2014-08-15 20:34:45.195697"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.205176"], ["in_language", "en"], ["text", "Where can I find classes, programs and events that are happening at the library?"], ["updated_at", "2014-08-15 20:34:45.205176"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.216665"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 32], ["text", "You can find a listing of library events on the library's website [here][1]. You can also pick up a monthly calendar of events at any [library branch][2]. [1]: http://oaklandlibrary.org/events [2]: http://oaklandlibrary.org/using-library/locations-hours"], ["updated_at", "2014-08-15 20:34:45.216665"]]
[1m[35m (3.2ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.230614"], ["in_language", "en"], ["text", "How do I get a disabled person parking permit?"], ["updated_at", "2014-08-15 20:34:45.230614"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.246448"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 33], ["text", "Disabled parking permits need to be obtained from the California Department of Motor Vehicles. You can find more information and the application form [here](http://www.dmv.ca.gov/pubs/brochures/fast_facts/ffvr07.htm#)."], ["updated_at", "2014-08-15 20:34:45.246448"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.268919"], ["in_language", "en"], ["text", "Are there internships at the City?"], ["updated_at", "2014-08-15 20:34:45.268919"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.283283"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 34], ["text", "You can find more information on City internships on the City of Oakland website. Different departments (including the [City Auditor][1], and the [Public Ethics Commission][2]) offer internships which can be found posted on the individual department's website. Go to the City of Oakland website, and search \"[internship][3]\". [1]: http://www.oaklandauditor.com/en/ruby/careers/40 [2]: http://www2.oaklandnet.com/Government/o/CityAdministration/d/PublicEthics/internships/index.htm [3]: http://www2.oaklandnet.com/Search/index.htm?cx=017801668647536616097:grdicmryz10&cof=FORID:10&ie=UTF-8&q=internship&sa=Search"], ["updated_at", "2014-08-15 20:34:45.283283"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.295379"], ["in_language", "en"], ["text", "How can I rent event space in Oakland?"], ["updated_at", "2014-08-15 20:34:45.295379"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.308841"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 35], ["text", "Oakland Parks & Recreation offers rental facilities, listed here: [http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm][1] There are also private facilities available to rent in Oakland. [1]: http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm"], ["updated_at", "2014-08-15 20:34:45.308841"]]
[1m[35m (2.2ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.330241"], ["in_language", "en"], ["text", "Where can I get tax forms?"], ["updated_at", "2014-08-15 20:34:45.330241"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.340631"], ["in_language", "en"], ["need_to_know", "If you would like to download tax forms online: Federal tax forms are available from the Internal Revenue Service. Many of the frequently used Federal tax forms can be found at http://www.irs.gov/uac/Forms,-Publications,-and-Other-Tax-Products. State tax forms are available from the State of California’s Franchise Tax Board. Many of the frequently used state tax forms can be found at https://www.ftb.ca.gov/forms/search/index.aspx."], ["question_id", 36], ["text", "You can find tax forms at the [Oakland Public Library][1] (like the 1040 EZ tax form). Some are in print form, and others can be printed by a library staff member (printing charges may apply). Before you go, it's helpful to bring the exact form number you need so the library staff member can find it with ease. If you don't have the form number, not to worry: a staff member is happy to help. To find an Oakland Public Library location near you, [look at the map][2]. [1]: http://www.oaklandlibrary.org/using-library/locations-hours [2]: https://data.oaklandnet.com/Public-Services/Map-of-Oakland-Public-Libraries/yra4-ynr5"], ["updated_at", "2014-08-15 20:34:45.340631"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.351255"], ["in_language", "en"], ["text", "What are the safest areas in Oakland?"], ["updated_at", "2014-08-15 20:34:45.351255"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.362233"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 37], ["text", "The best way to find out what areas of Oakland have the fewest reported crimes is by using the interactive map at the [Oakland Crimespotting][1] site. You can explore crimes by neighborhood, by type, by time of day, both recently and over time. [1]: http://oakland.crimespotting.org/ "], ["updated_at", "2014-08-15 20:34:45.362233"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.378253"], ["in_language", "en"], ["text", "Are there any sex offenders in my neighborhood?"], ["updated_at", "2014-08-15 20:34:45.378253"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.388410"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 38], ["text", "You can search for your address on the [Meghan's Law Website][1] to find registered sex offenders that live nearby. Before you search the map, you have to click \"continue\" at the bottom of the first page, then click the check box and \"continue\" at the bottom of the second page. Then you will see a map of California and you can search for your address by clicking on the \"address\" box on the left side of the page. [1]: http://www.meganslaw.ca.gov/"], ["updated_at", "2014-08-15 20:34:45.388410"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.431808"], ["in_language", "en"], ["text", "What do I do if my car has been towed?"], ["updated_at", "2014-08-15 20:34:45.431808"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (2.2ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.447648"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 39], ["text", "If you think your car has been towed, first check the A&B Towing site (http://www.abimpound.com/towed.html) to see if they know. You should also call the Police Department Records Division at (510) 238-3021 to confirm your car has been towed. If it has been towed, you can go to the Records Division, 3rd floor, Police Administration Building, 455 7th Street (at Broadway) to get a Release Form for your vehicle."], ["updated_at", "2014-08-15 20:34:45.447648"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.461433"], ["in_language", "en"], ["text", "Where is the closest public library?"], ["updated_at", "2014-08-15 20:34:45.461433"]]
[1m[36m (2.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.478380"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 40], ["text", "To see a map of all of the Oakland Public Libraries, go [here][1]. You can click on each dot to see the address, phone number and hours. You can find a list of library locations on the Oakland Public Library Website [here][2]. If you are looking for a library close to where you are right now, no matter where you are, you can click [here][3]. [1]: https://data.oaklandnet.com/Public-Services/Map-of-Oakland-Public-Libraries/yra4-ynr5 [2]: http://oaklandlibrary.org/using-library/locations-hours [3]: https://maps.google.com/maps?ie=UTF-8&q=closest%20public%20library"], ["updated_at", "2014-08-15 20:34:45.478380"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.500089"], ["in_language", "en"], ["text", "Where are the recycling centers located?"], ["updated_at", "2014-08-15 20:34:45.500089"]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.511843"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 41], ["text", "Here's a [directory of recycling drop off centers in and around Oakland][1]. For more information about recycling in Oakland, visit [www.oaklandrecycles.com][2]. [1]: http://www2.oaklandnet.com/oakca/groups/pwa/documents/form/oak027311.pdf [2]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/s/GAR/index.htm"], ["updated_at", "2014-08-15 20:34:45.511843"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.530221"], ["in_language", "en"], ["text", "What are the current job openings at the City?"], ["updated_at", "2014-08-15 20:34:45.530221"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.548142"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 42], ["text", "Check the [Human Resources page][1] for a list of open jobs. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm"], ["updated_at", "2014-08-15 20:34:45.548142"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.564154"], ["in_language", "en"], ["text", "What youth services and activities are available?"], ["updated_at", "2014-08-15 20:34:45.564154"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.583273"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 43], ["text", "Several city departments offer services for youth. You can see the Parks and Recreation listings [here][1]. The Oakland Public Library has many services and listings of services for [kids][2] and [teens][3]. Measure Y youth programs are [here][4]. **Late Night Live** Provides safe places for youth and families late Friday and Saturday nights. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254 **Mayor's Summer Job Program** Program to employ low-income youth during the summer. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254 **Mayor's Mentoring Initiative** Program that finds caring adults to work with Foster youth, formerly incarcerated youth and chronically absent youth. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254 **Summer Stars Program** An outdoor camping experience for middle school students from our toughest neighborhoods. Find dates for the next trip at the Summer Star's [website][5]. If you would like to sign up your group for a three day/two night camping trip, please contact us via email at oaklandpal@oaklandpal.org OR call 510-615-5758. **Oakland Police Activities League (PAL)** Program dedicated to offering programs and opportunities for kids to work with positive role models and learn about success and failure without guns and drugs. Offers basketball, track and field, overnight camping, and more. [Oakland PAL Website][6] **Oakland Police Explorers** Program designed for high school students who are at least 14.5 years old and want a chance to see what law enforcement is all about. If you are interested in the Explorer Program at the Oakland Police Department, contact the Explorer Advisors, Officer Mildred Oliver or Officer Jumaal Hill at: ph: 510-615-5758 fax: 510-615-5864 oaklandpal@oaklandpal.org **OK (Our Kids) Program** Program focused on reducing the high incarceration and homicide rates of African-American young men (12-18 years old) by providing needed services to youth, promoting economic self-reliance, and encouraging responsible citizenship. [Website][7] ph: 510-238-7998 okprogram@okprogramofoakland.com **GREAT Program** The Gang Resistance, Education and Training program is a structured, school-based program implemented in areas where gang activity either exists or are emerging. [Website][8] You can also find information about some of the [organizations with which we are partnering to give hope to Oakland's youth][10]. [1]: https://securerw.oaklandnet.com/registrationmain.sdi [2]: http://oaklandlibrary.org/kids [3]: http://oaklandlibrary.org/teens [4]: http://oaklandunite.org/youth/ [5]: http://oaklandpal.org/mayor_quan_summer_stars_camping_program [6]: http://oaklandpal.org/home [7]: http://www.okprogramofoakland.com/ [8]: http://www.great-online.org/ [9]: http://www.oaklandlibrary.org/teens/your-life/mind-body/mental-health-0 [10]: http://www2.oaklandnet.com/Government/o/Mayor/i/EducationLeadership/OAK025457"], ["updated_at", "2014-08-15 20:34:45.583273"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (1.3ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.600278"], ["in_language", "en"], ["text", "Where can I get free Wi-Fi?"], ["updated_at", "2014-08-15 20:34:45.600278"]]
[1m[36m (2.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.627883"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 44], ["text", "You can use free Wi-Fi at all Oakland Public Library locations. You can see a list of libraries [here][1]. You can use free Wi-Fi inside City Hall at 1 Frank H. Ogawa Plaza, Oakland, CA 94612. [1]: http://oaklandlibrary.org/using-library/locations-hours"], ["updated_at", "2014-08-15 20:34:45.627883"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (1.2ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.643433"], ["in_language", "en"], ["text", "What can and can't I recycle?"], ["updated_at", "2014-08-15 20:34:45.643433"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.659030"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 45], ["text", "You can find a list of what you can and cannot recycle for both residential and commercial services on the [Oakland Recycles website][1]. For recyclable items that are not listed on the Oakland Recycles website, please visit [www.stopwaste.org][2] and use the online Recycling Guide (towards the bottom right side of the Stop Waste web page. [1]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/s/GAR/index.htm [2]: http://www.stopwaste.org"], ["updated_at", "2014-08-15 20:34:45.659030"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.673234"], ["in_language", "en"], ["text", "How can I see how my city councilperson voted on a particular issue?"], ["updated_at", "2014-08-15 20:34:45.673234"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.684402"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 46], ["text", "Visit the City Clerk's Legistar search feature at [http://oakland.legistar.com/legislation.aspx][1]. Click on the record number for the legislation in the search results and then on Action Details. [1]: http://oakland.legistar.com/legislation.aspx"], ["updated_at", "2014-08-15 20:34:45.684402"]]
[1m[35m (3.3ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.704763"], ["in_language", "en"], ["text", "Where do I get a bus pass?"], ["updated_at", "2014-08-15 20:34:45.704763"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.713721"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 47], ["text", "[AC Transit](http://actransit.com) makes bus passes available at many Oakland retail locations, including supermarkets, drug stores, senior centers and news stands. Search for your nearest retail location using your Zip code at [AC Transit's retail locations finder](http://www.actransit.org/rider-info/where-to-buy-a-pass/). Passes can be purchased by mail using the [AC Transit order form](http://www.actransit.org/wp-content/uploads/Ticket_-Order_Form-8.2011.pdf). All AC Transit vehicles accept payments using [Clipper Card](http://www.actransit.org/rider-info/why-clipper/), the Bay Area’s reloadable card for paying transit fares. A Clipper card keeps track of the value on it and automatically deducts the right fare, including transfers and discounts. You can load an AC Transit pass onto a Clipper card, a pass from another agency, or cash value."], ["updated_at", "2014-08-15 20:34:45.713721"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.728396"], ["in_language", "en"], ["text", "How do I register to vote?"], ["updated_at", "2014-08-15 20:34:45.728396"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.737984"], ["in_language", "en"], ["need_to_know", "---------- *Have other questions about how to register to vote, or whether you need to? Go to the [Alameda County Registrar of Voters FAQ Page][1]* [1]: http://www.acgov.org/rov/registrationfaq.htm "], ["question_id", 48], ["text", " **If you just need to register or re-register to vote -- you can do it online!** **Go to the [California Secretary of State's online voter registration page][1].** [1]: http://registertovote.ca.gov/"], ["updated_at", "2014-08-15 20:34:45.737984"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.754979"], ["in_language", "en"], ["text", "Can I speak with a live person at the City for help with a question?"], ["updated_at", "2014-08-15 20:34:45.754979"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.765727"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 49], ["text", "You can call the Oaklanders Assistance Center at (510) 444-CITY, which is (510) 444-2489. Or email your question to [oac@oaklandnet.com][1]. If you prefer, you may visit the center in-person. Office hours are typically 8:30 am to 5pm. [1]: http://mailto:oac@oaklandnet.com"], ["updated_at", "2014-08-15 20:34:45.765727"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.780483"], ["in_language", "en"], ["text", "How much does it cost to ride a bus in Oakland?"], ["updated_at", "2014-08-15 20:34:45.780483"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.797488"], ["in_language", "en"], ["need_to_know", "You might also consider a convenient buss pass. [Click here to see the answer on where to purchase bus passes][1]. [1]: http://answers.oaklandnet.com/quick_answers/where-do-i-get-a-bus-pass"], ["question_id", 50], ["text", "You can find a full detailed listing of bus fares on the AC Transit site [here][1]. * Regular bus fare is $2.10. * Youth bus fare is $1.05 (ages 5-18) * Senior bus fare is $1.05 (ages 65+) [1]: http://www.actransit.org/rider-info/bus-fares/"], ["updated_at", "2014-08-15 20:34:45.797488"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.807148"], ["in_language", "en"], ["text", "Who do I contact if a tree is protruding on to my property?"], ["updated_at", "2014-08-15 20:34:45.807148"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.817976"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 51], ["text", "If there is a tree protruding onto your property you will need to determine if the tree itself is on public or private property. If the tree is on: - **Private Property** - you will need to communicate with the owner and discuss a solution. If the resolution is tree removal, the owner will need to file a [removal permit][1]. - **Public Property** - Please call (510) 615-5566 or submit your request online by clicking here, use the SeeClickFix mobile or web app or email pwacallcenter@oaklandnet.com. [1]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/o/TreeServices/OAK023048"], ["updated_at", "2014-08-15 20:34:45.817976"]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.836744"], ["in_language", "en"], ["text", "Does the City have a calendar of fun events?"], ["updated_at", "2014-08-15 20:34:45.836744"]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.849113"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 52], ["text", "Visit Oakland, the official destination marketing organization for the City of Oakland, maintains an online event calendar at [www.visitoakland.org][1]. Submit your event information via email to [events@visitoakland.org][2]. [1]: http://www.visitoakland.org [2]: http://mailto:events@visitoakland.org"], ["updated_at", "2014-08-15 20:34:45.849113"]]
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.860279"], ["in_language", "en"], ["text", "How do I get a passport?"], ["updated_at", "2014-08-15 20:34:45.860279"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.874885"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 53], ["text", "To get a passport or to renew your existing passport, visit the U.S. State Department's [website][1] and fill out an application. Then bring your finished application, original birth certificate and check or money order to a local processing center. Visit the following website to find a nearby center. You may need to schedule an appointment. [http://iafdb.travel.state.gov/][2] [1]: http://travel.state.gov/passport/ [2]: http://iafdb.travel.state.gov/"], ["updated_at", "2014-08-15 20:34:45.874885"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.3ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.885143"], ["in_language", "en"], ["text", "How can I report an animal nuisance?"], ["updated_at", "2014-08-15 20:34:45.885143"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.898228"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 54], ["text", "If it is an emergency (a vicious dog or an animal in distress), call (510) 777-3333. If it is not an emergency (barking dogs, obnoxious cats, crowing roosters), call (510) 535-5602. Please note that roosters are illegal in Oakland. "], ["updated_at", "2014-08-15 20:34:45.898228"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.915046"], ["in_language", "en"], ["text", "What is the closest park to my house?"], ["updated_at", "2014-08-15 20:34:45.915046"]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.930224"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 55], ["text", "You can see a list of all the parks and where they are on a map here[1] [1]: http://www2.oaklandnet.com/Government/o/opr/s/Parks/index.htm"], ["updated_at", "2014-08-15 20:34:45.930224"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.944821"], ["in_language", "en"], ["text", "What are the closest hiking trails?"], ["updated_at", "2014-08-15 20:34:45.944821"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.959093"], ["in_language", "en"], ["need_to_know", "There are many trails in the hills and various parks. The Parks and Recreation department lists the names of all of their parks, as well as various walking tours. You can search for all Bay Area trails near you on an interactive map. Transit to Trails shows many city and county parks, including those that can be reached by public transit. Yelp also lists trails, with reviews: Search Yelp for Walking Trails. "], ["question_id", 56], ["text", ""], ["updated_at", "2014-08-15 20:34:45.959093"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:45.974385"], ["in_language", "en"], ["text", "What is the City's budget process?"], ["updated_at", "2014-08-15 20:34:45.974385"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:45.986589"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 57], ["text", "The City of Oakland operates on a two-year budget cycle and is how City Council establishes its goals, program priorities and desired service levels for the upcoming fiscal period. The City Charter requires the City's budget be balanced -- expenditures must not exceed revenues. The Charter also requires that the budget must be adopted on or before June 30. Budget development and adoption occurs on odd numbered years and mid-cycle budget amendments occur on even numbered years. [Click here to visit the City's web page on the budget process.][1] [1]: http://ttp://www2.oaklandnet.com/Governmacnt/o/CityAdministration/d/BudgetOffice/DOWD005079."], ["updated_at", "2014-08-15 20:34:45.986589"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.003134"], ["in_language", "en"], ["text", "How do you request a bike rack In your neighborhood or commercial street?"], ["updated_at", "2014-08-15 20:34:46.003134"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.019895"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 58], ["text", "You can request a rack on City owned property by filling out the request form. The form asks for information about the address, the business name and your relationship to the business (if available)"], ["updated_at", "2014-08-15 20:34:46.019895"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.029428"], ["in_language", "en"], ["text", "I am behind on my property taxes. Is there a City program that can help?"], ["updated_at", "2014-08-15 20:34:46.029428"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.045939"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 59], ["text", "The City does not assist with the payment of property taxes. Questions about delinquent property taxes should be directed to the Alameda County Treasurer-Tax Collector’s Office at [www.acgov.org/treasurer/][1], or by calling 510.272.6800. The County does offer payment plans. With respect to City liens placed on property taxes, under very limited circumstances, payment plans with the City may be allowed and the lien(s) would be reversed. For more information, contact the Oakland Housing Assistance Center: - Phone: (510) 238-6182 - Email: housingassistance@oaklandnet.com - Address: 250 Frank Ogawa Plaza 6th Floor Oakland, CA 94612 - [http://www2.oaklandnet.com/Government/o/hcd/o/HousingAssistanceCenter/index.htm][2] [1]: http://www.acgov.org/treasurer/ [2]: http://www2.oaklandnet.com/Government/o/hcd/o/HousingAssistanceCenter/index.htm"], ["updated_at", "2014-08-15 20:34:46.045939"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.058960"], ["in_language", "en"], ["text", "How do you report a problem with your smartphone."], ["updated_at", "2014-08-15 20:34:46.058960"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.075871"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 60], ["text", "When you are outside and see an issue that the City of Oakland is responsible, take out your smartphone, click a picture, and then report it. This problems gets tracked in the City's database. You get a link to share with your neighbors, while being informed when the City fixes the problem. First download the app - SeeClickFix. You will need to register with SeeClickFix to get an account. Then, you track your reports by going to the web site https://seeclickfix.com. Once you start reporting these issues, you are notified of nearby problems and can support your neighbors efforts to make your neighborhood better."], ["updated_at", "2014-08-15 20:34:46.075871"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (1.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.087151"], ["in_language", "en"], ["text", "How do I contact my Council Member?"], ["updated_at", "2014-08-15 20:34:46.087151"]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (2.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.099754"], ["in_language", "en"], ["need_to_know", "If you know your Council district number, the general phone number for each Councilmember is (510) 238-700[# of District]. For example, the phone number for the District 4 Office (Montclair-Laurel-Allendale) is (510) 238-7004. Oakland's At-Large Councilmember's Office phone is (510) 238-7008. The City's naming convention for emaill addresses is first-initial-last-name@oaklandnet.com, for example Councilmember Libby Schaaf's email is lschaaf@oaklandnet.com. If you want to know what Councilmembers serve on a particular Council Committee go [here][4]. If you want to email ALL Councilmembers at once, send to citycouncil@oaklandnet.com . Many Councilmembers have newsletters you can subscribe to and some hold public office hours for drop-in visits."], ["question_id", 61], ["text", "If you don't know who your Councilmember is, use this [locator tool][1] or call the Council Office Front Desk at (510) 238-7584. The [locator tool][2] also provides your Councilmember's email. Links to all Councilmember websites are [here][3]. [1]: http://mapgis.oaklandnet.com/councildistricts/ [2]: http://%20http://mapgis.oaklandnet.com/councildistricts/ [3]: http://www2.oaklandnet.com/Government/o/CityCouncil/index.htm [4]: http://www2.oaklandnet.com/oakca1/groups/cityclerk/documents/webcontent/oak040150.pdf"], ["updated_at", "2014-08-15 20:34:46.099754"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.112622"], ["in_language", "en"], ["text", "Can I apply for more than one City job at a time?"], ["updated_at", "2014-08-15 20:34:46.112622"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.120888"], ["in_language", "en"], ["need_to_know", "Let's say you've applied to a job before at the [Employment Opportunities][1] page. High five. Your standard information is are all saved with your account in your online profile. Address, past work history, all the stock info is saved. You can use the stored information for your new job with a click of a button and update it as you need to. **However, most jobs have Supplemental Questions that you MUST answer.** These questions are specific and unique. For instance, if I apply for a Park Ranger job and a Park Supervisor job, my resume is going to look pretty much the same and I can use it for both. But the questions asked by the applications for the two jobs are different, so I need to answer those questions differently. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm"], ["question_id", 62], ["text", "Yes, you can apply for any City job that is open and apply for as many of them as you like at the same time. But for each position, you have to fill out separate applications since each job posting usually requires information unique to that job – it might be special questions, or you’ll have to attach a copy of a certificate, that sort of thing."], ["updated_at", "2014-08-15 20:34:46.120888"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.135019"], ["in_language", "en"], ["text", "Where can I get help with my taxes?"], ["updated_at", "2014-08-15 20:34:46.135019"]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.145285"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 63], ["text", "You can find help with your taxes--for free!--at the following locations: * [American Association Retired Persons (AARP) Foundation Tax-Aide][1] * United Way of Bay Area [SparkPoint Centers][2] * Oakland Public Library [Tax Assistance Program][3] Closer to tax time, visit these organizations: * [The Unity Council][4] * [The East Bay Asian Development Corporation][5] The Internal Revenue Service (IRS) also offers [free tax preparation help][6] on their website. [1]: http://www.aarp.org/money/taxes/aarp_taxaide/ [2]: http://www.uwba.org/cut-poverty/sparkpoint/ [3]: http://www.oaklandlibrary.org/services/tax-assistance-program [4]: http://www.unitycouncil.org/ [5]: http://www.ebaldc.org/ [6]: http://www.irs.gov/Individuals/Free-Tax-Return-Preparation-for-You-by-Volunteers"], ["updated_at", "2014-08-15 20:34:46.145285"]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.162195"], ["in_language", "en"], ["text", "How do I get a permit for constructing a building?"], ["updated_at", "2014-08-15 20:34:46.162195"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.177953"], ["in_language", "en"], ["need_to_know", "The type of permit you need to obtain is dependent on the specifics of your project. Before you go, review the [checklist of documents](http://www2.oaklandnet.com/Government/o/PBN/OurServices/permits/index.htm) to bring with you in order to apply for your permit. "], ["question_id", 64], ["text", "**Apply in person at the City of Oakland's Building Services Department Permit Center on the second floor of 250 Frank H. Ogawa Plaza, Oakland.** "], ["updated_at", "2014-08-15 20:34:46.177953"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.187562"], ["in_language", "en"], ["text", "When/what are festivals in Oakland?"], ["updated_at", "2014-08-15 20:34:46.187562"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.195890"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 65], ["text", "You can find a list of upcoming and ongoing festivals as well as a general list of fun events taking place in Oakland on the [Visit Oakland Calendar of Festivals page][1]. [1]: http://visitoakland.org/visiting_calendar_of_events.cfm?all=1"], ["updated_at", "2014-08-15 20:34:46.195890"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.211563"], ["in_language", "en"], ["text", "What are the most dangerous areas in Oakland?"], ["updated_at", "2014-08-15 20:34:46.211563"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.222603"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 66], ["text", "The best way to find out what areas of Oakland have the most reported crimes is by using the interactive map at the [Oakland Crimespotting][1] site. You can explore crimes by neighborhood, by type, by time of day, both recently and over time. [1]: http://oakland.crimespotting.org/ "], ["updated_at", "2014-08-15 20:34:46.222603"]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.232949"], ["in_language", "en"], ["text", "What is the best place to live, work, and play?"], ["updated_at", "2014-08-15 20:34:46.232949"]]
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.244562"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 67], ["text", "...the City of Oakland!"], ["updated_at", "2014-08-15 20:34:46.244562"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-15 20:34:46.258147"], ["in_language", "en"], ["text", "I am an Oakland landlord. How can I evict a tenant?"], ["updated_at", "2014-08-15 20:34:46.258147"]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-15 20:34:46.273009"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 68], ["text", "**Verify that you are legally allowed to evict the tenant.** ◦ A tenant may be evicted for failing to pay rent. ◦ A tenant may be evicted for violating the lease. ◦ A tenant may be evicted for using the rental unit for an unlawful purpose. ◦ A tenant may be evicted for manufacturing or dealing illegal drugs in the rental unit. ◦ A tenant may be evicted for the unlawful use of a weapon or ammunition. ◦ A tenant may be evicted for materially damaging the rental unit. ◦ A tenant may be evicted for causing a significant nuisance to other tenants. **Serve the tenant with a 3-Day Notice to Pay Rent or Quit form.** ◦ Take the completed form to the tenant and hand it to him or her. If he or she refuses to take it, leave it on the ground near the tenant. ◦ If you are unable to serve it directly to the tenant, leave it with someone who is at least 18 years old at the rental unit or with an adult at the tenant's place of work. A copy must also be mailed to the tenant in this situation. ◦ If unable to serve the form directly to another person, post it on the tenant's door and mail a copy of the form to him or her. **Allow the tenant 3 business days (Monday to Friday) after delivering the notice to remedy the situation.** ◦ The 3-day period begins the day after the notice is served. **File an Unlawful Detainer Complaint, a Civil Case Cover Sheet, and a Pre-judgment Right of Possession form.** ◦ The Unlawful Detainer Complaint can be found at the following URL: http://www.courts.ca.gov/documents/ud100.pdf. This is an eviction notice. ◦ The Civil Case Cover Sheet can be found at the following URL: http://www.courts.ca.gov/documents/cm010.pdf ◦ Submit the paperwork to the courthouse in the county that the property is in. ◦ The County Clerk will give you a Summons and a stamped copy of the Unlawful Detainer Complaint. Make sure you also receive the Pre-judgment Right of Possession form. In some cases, you must provide multiple copies for the Clerk to stamp. **Serve the tenant with the Unlawful Detainer Complaint, the Summons, and the Pre-judgment Right of Possession form.** ◦ Serve these in the same way as you served the 3-day Notice to Pay Rent or Quit form. ◦ The tenant will have 5 days to file a response with you and the court. Post and mail the tenant has 10 days to respond, after the 10 days start counting the 5 days, if no response file for judgement. **Complete the court process.** ◦ If the tenant does not answer within 5 days after being served, request a default judgment from the court. This can be done by submitting a following form to the court. ◦ If a default judgment is issued, you will be given a Writ of Possession. Take this form to the local Sheriff and have him or her evict the tenant. ◦ If the tenant decides to challenge the eviction, you or the tenant may request a trial in front of a judge or jury. The trial will occur within 21 days of the request. ◦ If you win the case, you will be awarded possession of the property and possibly monetary awards. ◦ If you win the case, the court will order the Sheriff to post a notice giving the tenant 5 days to vacate the rental unit. If the tenant does not leave, the Sheriff will forcibly remove him or her. ◦ If the tenant wins the case, he or she will be permitted to remain in the rental unit. You may have to pay his or her court fees and he or she may be ordered to pay any past-due rent. **Store the tenant's items for 2 weeks if he or she is evicted.** ◦ If the tenant leaves items behind, you must store them for 2 weeks and attempt to arrange for the tenant to retrieve them. ◦ If anything remains after this period, you may keep, sell, or dispose of the items. More info: http://www.dca.ca.gov/publications/landlordbook/index.shtml http://www2.oaklandnet.com/oakca/groups/ceda/documents/policy/dowd008116.pdf [1]: http://www.courts.ca.gov/documents/ud100.pdf"], ["updated_at", "2014-08-15 20:34:46.273009"]]
[1m[35m (1.2ms)[0m COMMIT
Started GET "/" for 10.0.2.2 at 2014-08-15 20:34:55 +0000
[1m[35mActiveRecord::SchemaMigration Load (0.8ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Processing by HomeController#index as HTML
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (16.2ms)
Completed 200 OK in 174ms (Views: 172.4ms | ActiveRecord: 0.0ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 20:35:02 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 19ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 20:35:02 +0000
Processing by HomeController#index as */*
Rendered shared/_autocomplete.html.erb (0.9ms)
Rendered home/index.html.erb within layouts/application (221.4ms)
Completed 200 OK in 1712ms (Views: 1710.9ms | ActiveRecord: 0.0ms)
Started GET "/search?q=budget+process" for 10.0.2.2 at 2014-08-15 20:35:05 +0000
Processing by SearchController#index as HTML
Parameters: {"q"=>"budget process"}
[1m[33mQuestion Search (109.3ms)[0m curl http://localhost:9200/questions_development%2Canswers_development/_search?pretty -d '{"query":{"dis_max":{"queries":[{"match":{"_all":{"query":"budget process","operator":"and","boost":10,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"budget process","operator":"and","boost":10,"analyzer":"searchkick_search2"}}},{"match":{"_all":{"query":"budget process","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"budget process","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search2"}}}]}},"size":100000,"from":0,"fields":[]}'
Completed 500 Internal Server Error in 147ms
Searchkick::InvalidQueryError ([400] {"error":"SearchPhaseExecutionException[Failed to execute phase [query], all shards failed; shardFailures {[rzetMzQ5RPew1ro9schkdw][questions_development][2]: SearchParseException[[questions_development][2]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[questions_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][questions_development][1]: SearchParseException[[questions_development][1]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[questions_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][questions_development][4]: SearchParseException[[questions_development][4]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[questions_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][questions_development][3]: SearchParseException[[questions_development][3]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[questions_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][answers_development][3]: SearchParseException[[answers_development][3]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[answers_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][answers_development][4]: SearchParseException[[answers_development][4]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[answers_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][answers_development][1]: SearchParseException[[answers_development][1]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[answers_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][answers_development][2]: SearchParseException[[answers_development][2]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[answers_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][answers_development][0]: SearchParseException[[answers_development][0]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[answers_development] [match] analyzer [searchkick_search] not found]; }{[rzetMzQ5RPew1ro9schkdw][questions_development][0]: SearchParseException[[questions_development][0]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\"query\":{\"dis_max\":{\"queries\":[{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":10,\"analyzer\":\"searchkick_search2\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search\"}}},{\"match\":{\"_all\":{\"query\":\"budget process\",\"operator\":\"and\",\"boost\":1,\"fuzziness\":1,\"max_expansions\":3,\"analyzer\":\"searchkick_search2\"}}}]}},\"size\":100000,\"from\":0,\"fields\":[]}]]]; nested: QueryParsingException[[questions_development] [match] analyzer [searchkick_search] not found]; }]","status":400}):
app/controllers/search_controller.rb:6:in `index'
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.1ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 20:35:11 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
[1m[36m (1.1ms)[0m [1mSELECT COUNT(*) FROM "questions"[0m
[1m[35m (0.9ms)[0m SELECT COUNT(*) FROM "answers"
[1m[33mQuestion Search (35.2ms)[0m curl http://localhost:9200/questions_development/_search?pretty -d '{"query":{"dis_max":{"queries":[{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":10,"analyzer":"searchkick_search"}},{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":10,"analyzer":"searchkick_search2"}},{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search"}},{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search2"}}]}},"size":100000,"from":0,"fields":[]}'
[1m[36mQuestion Load (1.9ms)[0m [1mSELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1000[0m
[1m[35mAnswer Load (2.0ms)[0m SELECT "answers".* FROM "answers" ORDER BY "answers"."id" ASC LIMIT 1000
[1m[33mQuestion Search (147.7ms)[0m curl http://localhost:9200/questions_development/_search?pretty -d '{"query":{"dis_max":{"queries":[{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":10,"analyzer":"searchkick_search"}},{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":10,"analyzer":"searchkick_search2"}},{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search"}},{"multi_match":{"fields":["_all"],"query":"license","use_dis_max":false,"operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search2"}}]}},"size":100000,"from":0,"fields":[]}'
Started GET "/search?q=budget+process" for 10.0.2.2 at 2014-08-15 20:36:00 +0000
Processing by SearchController#index as HTML
Parameters: {"q"=>"budget process"}
[1m[33mQuestion Search (150.6ms)[0m curl http://localhost:9200/questions_development%2Canswers_development/_search?pretty -d '{"query":{"dis_max":{"queries":[{"match":{"_all":{"query":"budget process","operator":"and","boost":10,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"budget process","operator":"and","boost":10,"analyzer":"searchkick_search2"}}},{"match":{"_all":{"query":"budget process","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"budget process","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search2"}}}]}},"size":100000,"from":0,"fields":[]}'
[1m[36mQuestion Load (3.7ms)[0m [1mSELECT "questions".* FROM "questions" WHERE "questions"."id" IN (57)[0m
[1m[35mAnswer Load (0.9ms)[0m SELECT "answers".* FROM "answers" WHERE "answers"."id" IN (57)
search-request: IP:10.0.2.2, params[:query]:budget process, QUERY:budget process, FIRST_RESULT:What is the City's budget process?, RESULTS_N:2
Rendered search/index.html.erb within layouts/application (1.5ms)
Rendered shared/_search_form.html.erb (1.4ms)
Completed 200 OK in 420ms (Views: 216.8ms | Searchkick: 150.6ms | ActiveRecord: 10.8ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 20:36:06 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 20:36:06 +0000
Processing by HomeController#index as */*
Rendered shared/_autocomplete.html.erb (0.9ms)
Rendered home/index.html.erb within layouts/application (166.8ms)
Completed 200 OK in 1491ms (Views: 1489.8ms | ActiveRecord: 0.0ms)
Started GET "/answers/57" for 10.0.2.2 at 2014-08-15 21:01:48 +0000
Processing by QuestionsController#show as HTML
Parameters: {"id"=>"57"}
[1m[36mQuestion Load (1.0ms)[0m [1mSELECT "questions".* FROM "questions" WHERE "questions"."id" = $1 LIMIT 1[0m [["id", 57]]
[1m[35mAnswer Load (1.1ms)[0m SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = $1 [["question_id", 57]]
Rendered questions/show.html.erb within layouts/application (98.0ms)
Rendered shared/_search_form.html.erb (1.4ms)
Completed 200 OK in 373ms (Views: 351.4ms | ActiveRecord: 10.0ms)
Started GET "/answers" for 10.0.2.2 at 2014-08-15 21:01:51 +0000
Processing by QuestionsController#index as HTML
[1m[36mQuestion Load (1.1ms)[0m [1mSELECT "questions".* FROM "questions"[0m
Rendered questions/index.html.erb within layouts/application (7.9ms)
Rendered shared/_search_form.html.erb (1.3ms)
Completed 200 OK in 285ms (Views: 282.5ms | ActiveRecord: 1.1ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 21:01:52 +0000
Processing by HomeController#index as HTML
Rendered shared/_autocomplete.html.erb (0.8ms)
Rendered home/index.html.erb within layouts/application (28.5ms)
Completed 200 OK in 297ms (Views: 296.1ms | ActiveRecord: 0.0ms)
Started GET "/search?q=license" for 10.0.2.2 at 2014-08-15 21:22:14 +0000
Processing by SearchController#index as HTML
Parameters: {"q"=>"license"}
[1m[33mQuestion Search (53.2ms)[0m curl http://localhost:9200/questions_development%2Canswers_development/_search?pretty -d '{"query":{"dis_max":{"queries":[{"match":{"_all":{"query":"license","operator":"and","boost":10,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"license","operator":"and","boost":10,"analyzer":"searchkick_search2"}}},{"match":{"_all":{"query":"license","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search"}}},{"match":{"_all":{"query":"license","operator":"and","boost":1,"fuzziness":1,"max_expansions":3,"analyzer":"searchkick_search2"}}}]}},"size":100000,"from":0,"fields":[]}'
[1m[35mQuestion Load (0.8ms)[0m SELECT "questions".* FROM "questions" WHERE "questions"."id" IN (31, 2)
[1m[36mAnswer Load (1.1ms)[0m [1mSELECT "answers".* FROM "answers" WHERE "answers"."id" IN (2, 31, 26, 8, 6)[0m
search-request: IP:10.0.2.2, params[:query]:license, QUERY:license, FIRST_RESULT:How do I get a marriage license?, RESULTS_N:7
Rendered search/index.html.erb within layouts/application (2.0ms)
Rendered shared/_search_form.html.erb (0.8ms)
Completed 200 OK in 344ms (Views: 224.4ms | Searchkick: 53.2ms | ActiveRecord: 1.9ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-15 21:22:20 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 21:22:20 +0000
Processing by HomeController#index as */*
Rendered shared/_autocomplete.html.erb (0.8ms)
Rendered home/index.html.erb within layouts/application (151.3ms)
Completed 200 OK in 507ms (Views: 505.7ms | ActiveRecord: 0.0ms)
Started GET "/answers/2" for 10.0.2.2 at 2014-08-15 21:22:25 +0000
Processing by QuestionsController#show as HTML
Parameters: {"id"=>"2"}
[1m[36mQuestion Load (0.9ms)[0m [1mSELECT "questions".* FROM "questions" WHERE "questions"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mAnswer Load (1.2ms)[0m SELECT "answers".* FROM "answers" WHERE "answers"."question_id" = $1 [["question_id", 2]]
Rendered questions/show.html.erb within layouts/application (79.8ms)
Rendered shared/_search_form.html.erb (1.2ms)
Completed 200 OK in 275ms (Views: 256.9ms | ActiveRecord: 9.4ms)
Started GET "/answers" for 10.0.2.2 at 2014-08-15 21:22:29 +0000
Processing by QuestionsController#index as HTML
[1m[36mQuestion Load (1.1ms)[0m [1mSELECT "questions".* FROM "questions"[0m
Rendered questions/index.html.erb within layouts/application (8.1ms)
Rendered shared/_search_form.html.erb (0.9ms)
Completed 200 OK in 273ms (Views: 270.9ms | ActiveRecord: 1.1ms)
Started GET "/answers/3" for 10.0.2.2 at 2014-08-15 22:20:15 +0000
Processing by QuestionsController#show as HTML
Parameters: {"id"=>"3"}
[1m[35mQuestion Load (1.5ms)[0m SELECT "questions".* FROM "questions" WHERE "questions"."id" = $1 LIMIT 1 [["id", 3]]
[1m[36mAnswer Load (1.2ms)[0m [1mSELECT "answers".* FROM "answers" WHERE "answers"."question_id" = $1[0m [["question_id", 3]]
Rendered questions/show.html.erb within layouts/application (37.4ms)
Rendered shared/_search_form.html.erb (1.2ms)
Completed 200 OK in 591ms (Views: 566.4ms | ActiveRecord: 13.1ms)
Started GET "/answers" for 10.0.2.2 at 2014-08-15 22:20:19 +0000
Processing by QuestionsController#index as HTML
[1m[35mQuestion Load (1.8ms)[0m SELECT "questions".* FROM "questions"
Rendered questions/index.html.erb within layouts/application (12.1ms)
Rendered shared/_search_form.html.erb (1.8ms)
Completed 200 OK in 617ms (Views: 613.2ms | ActiveRecord: 1.8ms)
Started GET "/" for 10.0.2.2 at 2014-08-15 22:20:22 +0000
Processing by HomeController#index as HTML
Rendered shared/_autocomplete.html.erb (1.3ms)
Rendered home/index.html.erb within layouts/application (62.4ms)
Completed 200 OK in 529ms (Views: 527.1ms | ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 14:08:38 +0000
Started GET "/" for 10.0.2.2 at 2014-08-18 14:08:39 +0000
[1m[36mActiveRecord::SchemaMigration Load (5.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Started GET "/" for 10.0.2.2 at 2014-08-18 14:08:39 +0000
Processing by HomeController#index as HTML
[1m[36mActiveRecord::SchemaMigration Load (2.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Rendered shared/_autocomplete.html.erb (7.6ms)
Rendered home/index.html.erb within layouts/application (54.5ms)
[1m[36mActiveRecord::SchemaMigration Load (1.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by HomeController#index as HTML
Processing by HomeController#index as HTML
Rendered shared/_autocomplete.html.erb (2.1ms)
Rendered home/index.html.erb within layouts/application (59.3ms)
Rendered shared/_autocomplete.html.erb (2.1ms)
Rendered home/index.html.erb within layouts/application (57.4ms)
Completed 200 OK in 2765ms (Views: 2736.3ms | ActiveRecord: 0.0ms)
Completed 200 OK in 2692ms (Views: 2672.0ms | ActiveRecord: 0.0ms)
Completed 200 OK in 3060ms (Views: 3029.3ms | ActiveRecord: 0.0ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 14:08:48 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 26ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 14:08:48 +0000
Processing by HomeController#index as */*
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (129.6ms)
Completed 200 OK in 1383ms (Views: 1381.7ms | ActiveRecord: 0.0ms)
[1m[36mActiveRecord::SchemaMigration Load (1.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to ActsAsTaggableOnMigration (20140818141434)
[1m[35m (0.6ms)[0m BEGIN
[1m[36m (27.9ms)[0m [1mCREATE TABLE "tags" ("id" serial primary key, "name" character varying(255)) [0m
[1m[35m (5.8ms)[0m CREATE TABLE "taggings" ("id" serial primary key, "tag_id" integer, "taggable_id" integer, "taggable_type" character varying(255), "tagger_id" integer, "tagger_type" character varying(255), "context" character varying(128), "created_at" timestamp)
[1m[36m (1.8ms)[0m [1mCREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")[0m
[1m[35m (1.9ms)[0m CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140818141434"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to AddMissingUniqueIndices (20140818141435)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (1.8ms)[0m CREATE UNIQUE INDEX "index_tags_on_name" ON "tags" ("name")
[1m[36m (3.9ms)[0m [1mDROP INDEX "index_taggings_on_tag_id"[0m
[1m[35m (1.1ms)[0m DROP INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context"
[1m[36m (3.0ms)[0m [1mCREATE UNIQUE INDEX "taggings_idx" ON "taggings" ("tag_id", "taggable_id", "taggable_type", "context", "tagger_id", "tagger_type")[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140818141435"]]
[1m[36m (1.5ms)[0m [1mCOMMIT[0m
Migrating to AddTaggingsCounterCacheToTags (20140818141436)
[1m[35m (1.0ms)[0m BEGIN
[1m[36m (4.9ms)[0m [1mALTER TABLE "tags" ADD COLUMN "taggings_count" integer DEFAULT 0[0m
[1m[35mActsAsTaggableOn::Tag Load (1.3ms)[0m SELECT "tags".* FROM "tags" ORDER BY "tags"."id" ASC LIMIT 1000
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140818141436"]]
[1m[35m (1.4ms)[0m COMMIT
Migrating to AddMissingTaggableIndex (20140818141437)
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35m (3.7ms)[0m CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140818141437"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
[1m[36mQuestion Load (4.9ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35m (1.8ms)[0m SELECT COUNT(*) FROM "questions"
[1m[36mQuestion Load (1.4ms)[0m [1mSELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1[0m
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'categories' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 1], ["taggable_type", "Question"]]
Started GET "/" for 10.0.2.2 at 2014-08-18 14:22:11 +0000
NoMethodError (undefined method `acts_as_taggable_on' for #):
app/models/question.rb:4:in `'
app/models/question.rb:1:in `'
app/admin/question.rb:1:in `'
config/routes.rb:2:in `block in '
config/routes.rb:1:in `'
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.1ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 14:22:15 +0000
NoMethodError (undefined method `acts_as_taggable_on' for #):
app/models/question.rb:4:in `'
app/models/question.rb:1:in `'
app/admin/question.rb:1:in `'
config/routes.rb:2:in `block in '
config/routes.rb:1:in `'
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 14:23:33 +0000
[1m[36mActiveRecord::SchemaMigration Load (1.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by HomeController#index as HTML
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (27.1ms)
Completed 200 OK in 1818ms (Views: 1798.6ms | ActiveRecord: 0.0ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 14:23:41 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 23ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 14:23:41 +0000
Processing by HomeController#index as */*
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (193.7ms)
Completed 200 OK in 2068ms (Views: 2066.5ms | ActiveRecord: 0.0ms)
[1m[36mQuestion Load (1.5ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mQuestion Load (1.4ms)[0m SELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1
[1m[36mActsAsTaggableOn::Tag Load (1.2ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[35mQuestion Load (1.1ms)[0m SELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1
[1m[36mActsAsTaggableOn::Tag Load (1.1ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[35m (0.8ms)[0m BEGIN
[1m[36mActsAsTaggableOn::Tag Load (1.2ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('duh'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (1.2ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'duh' LIMIT 1
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "duh"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 1 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 1 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:41:39.364262"], ["tag_id", 1], ["taggable_id", 1], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 1]]
[1m[35mSQL (1.3ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 1
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[36mQuestion Load (1.4ms)[0m [1mSELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1[0m
[1m[35mActsAsTaggableOn::Tag Load (1.2ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[36mQuestion Load (3.0ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mQuestion Load (1.1ms)[0m SELECT "questions".* FROM "questions"
[1m[36mQuestion Load (1.0ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mQuestion Load (1.2ms)[0m SELECT "questions".* FROM "questions"
[1m[36mQuestion Load (1.5ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mQuestion Load (1.2ms)[0m SELECT "questions".* FROM "questions"
[1m[36mQuestion Load (1.1ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mQuestion Load (0.9ms)[0m SELECT "questions".* FROM "questions"
[1m[36mQuestion Load (1.3ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mQuestion Load (1.0ms)[0m SELECT "questions".* FROM "questions"
[1m[36mQuestion Load (1.2ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mAnswer Load (9.4ms)[0m SELECT "answers".* FROM "answers"
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 1]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 2]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 3]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 4]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 5]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (1.1ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 6]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 7]]
[1m[36m (1.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 8]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 9]]
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 10]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 11]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 12]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 13]]
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 14]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 15]]
[1m[36m (1.6ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 16]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 17]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 18]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 19]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 20]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 21]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 22]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 23]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 24]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.1ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 25]]
[1m[36m (1.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 26]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 27]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 28]]
[1m[35m (2.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 29]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 30]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.3ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 31]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 32]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 33]]
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 34]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 35]]
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.3ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 36]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 37]]
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (1.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 38]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.3ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 39]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 40]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 41]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 42]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 43]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 44]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 45]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 46]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 47]]
[1m[36m (2.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 48]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.2ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 49]]
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 50]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 51]]
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (1.1ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 52]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 53]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 54]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 55]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 56]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 57]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 58]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.0ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 59]]
[1m[36m (1.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 60]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 61]]
[1m[36m (2.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 62]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 63]]
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 64]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 65]]
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 66]]
[1m[35m (2.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.1ms)[0m DELETE FROM "answers" WHERE "answers"."id" = $1 [["id", 67]]
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "answers" WHERE "answers"."id" = $1[0m [["id", 68]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36mQuestion Load (1.4ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mActsAsTaggableOn::Tagging Load (1.6ms)[0m [1mSELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2[0m [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1 [["id", 1]]
[1m[36mSQL (1.0ms)[0m [1mUPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) - 1 WHERE "tags"."id" = 1[0m
[1m[35mSQL (1.0ms)[0m DELETE FROM "taggings" WHERE "taggings"."id" = $1 [["id", 1]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 1], ["taggable_type", "Question"]]
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 1]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 2], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 2], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 2], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 2]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.3ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 3], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.2ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 3], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 3], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 3]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 4], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.2ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 4], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.3ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 4], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 4]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.3ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 5], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 5], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 5], ["taggable_type", "Question"]]
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 5]]
[1m[35m (2.4ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 6], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.1ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 6], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 6], ["taggable_type", "Question"]]
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 6]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 7], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 7], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 7], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 7]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 8], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 8], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 8], ["taggable_type", "Question"]]
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 8]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 9], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 9], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 9], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 9]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 10], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 10], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 10], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 10]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 11], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 11], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 11], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 11]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 12], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 12], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 12], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 12]]
[1m[35m (2.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 13], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 13], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 13], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 13]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 14], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.0ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 14], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 14], ["taggable_type", "Question"]]
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 14]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 15], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 15], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 15], ["taggable_type", "Question"]]
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 15]]
[1m[35m (2.3ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 16], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.5ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 16], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 16], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 16]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 17], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.0ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 17], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 17], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 17]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 18], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 18], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.1ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 18], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 18]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 19], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 19], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 19], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 19]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 20], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.0ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 20], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 20], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 20]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 21], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 21], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 21], ["taggable_type", "Question"]]
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 21]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 22], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 22], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 22], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 22]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.2ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 23], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 23], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 23], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 23]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 24], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 24], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 24], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 24]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 25], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 25], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 25], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 25]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 26], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 26], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 26], ["taggable_type", "Question"]]
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 26]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 27], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 27], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 27], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 27]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 28], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.0ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 28], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 28], ["taggable_type", "Question"]]
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 28]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 29], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.5ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 29], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 29], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 29]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 30], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 30], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 30], ["taggable_type", "Question"]]
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 30]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 31], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 31], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 31], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 31]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 32], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 32], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (2.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 32], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 32]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.1ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 33], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 33], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 33], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 33]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 34], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 34], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 34], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 34]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 35], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.5ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 35], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 35], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 35]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 36], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 36], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 36], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 36]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 37], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.5ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 37], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 37], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 37]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.4ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 38], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 38], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 38], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 38]]
[1m[35m (1.9ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 39], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 39], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.1ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 39], ["taggable_type", "Question"]]
[1m[36mSQL (1.2ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 39]]
[1m[35m (2.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 40], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 40], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 40], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 40]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 41], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 41], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 41], ["taggable_type", "Question"]]
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 41]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.3ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 42], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.3ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 42], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 42], ["taggable_type", "Question"]]
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 42]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 43], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 43], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 43], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 43]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 44], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 44], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 44], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 44]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 45], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 45], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 45], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 45]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 46], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 46], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 46], ["taggable_type", "Question"]]
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 46]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 47], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 47], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 47], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 47]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 48], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 48], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 48], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 48]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 49], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.9ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 49], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 49], ["taggable_type", "Question"]]
[1m[36mSQL (1.0ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 49]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 50], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 50], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 50], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 50]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 51], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 51], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 51], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 51]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 52], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 52], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 52], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 52]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 53], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.2ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 53], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.2ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 53], ["taggable_type", "Question"]]
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 53]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 54], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 54], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 54], ["taggable_type", "Question"]]
[1m[36mSQL (0.8ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 54]]
[1m[35m (1.8ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 55], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.1ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 55], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 55], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 55]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 56], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.5ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 56], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 56], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 56]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 57], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 57], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 57], ["taggable_type", "Question"]]
[1m[36mSQL (0.7ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 57]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 58], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 58], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 58], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 58]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 59], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.5ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 59], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 59], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 59]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 60], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 60], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 60], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 60]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 61], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.2ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 61], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 61], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 61]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 62], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.7ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 62], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 62], ["taggable_type", "Question"]]
[1m[36mSQL (1.1ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 62]]
[1m[35m (2.2ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 63], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 63], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 63], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 63]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 64], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.2ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 64], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.1ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 64], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 64]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 65], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.6ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 65], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.8ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 65], ["taggable_type", "Question"]]
[1m[36mSQL (0.9ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 65]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.5ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 66], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.3ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 66], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (0.6ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 66], ["taggable_type", "Question"]]
[1m[36mSQL (0.5ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 66]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.9ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 67], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (1.3ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 67], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.0ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 67], ["taggable_type", "Question"]]
[1m[36mSQL (0.6ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 67]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tagging Load (0.7ms)[0m SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 [["taggable_id", 68], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Load (0.8ms)[0m [1mSELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('tags'))[0m [["taggable_id", 68], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tagging Load (1.2ms)[0m SELECT "taggings".* FROM "taggings" INNER JOIN "tags" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = ('categories')) [["taggable_id", 68], ["taggable_type", "Question"]]
[1m[36mSQL (1.3ms)[0m [1mDELETE FROM "questions" WHERE "questions"."id" = $1[0m [["id", 68]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (2.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:03.627959"], ["in_language", "en"], ["text", "Can I revise my City job application?"], ["updated_at", "2014-08-18 14:57:03.627959"]]
[1m[36mActsAsTaggableOn::Tag Load (1.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (1.1ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'employment' LIMIT 1
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "employment"]]
[1m[35mActsAsTaggableOn::Tag Load (1.3ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 69], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.2ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 69 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:03.688703"], ["tag_id", 2], ["taggable_id", 69], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (2.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:03.770155"], ["in_language", "en"], ["need_to_know", "If you're in the process of applying, you can save your application as you go and ahead any edit part you please. You can even use past applications for new job openings so you don't need to re-enter every single past employment. But once you've hit submit it's \"bon voyage.\""], ["question_id", 69], ["text", "Once you've hit that submit button, your application is locked in. However, you can save and edit applications for jobs that you are currently applying to as well as revise old applications and use them to apply to new jobs. "], ["updated_at", "2014-08-18 14:57:03.770155"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:03.798056"], ["in_language", "en"], ["text", "How do I get a motorcycle license?"], ["updated_at", "2014-08-18 14:57:03.798056"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 70], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 70 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:03.807096"], ["tag_id", 2], ["taggable_id", 70], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:03.822215"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 70], ["text", "Visit the [Motorcycle License Checklist][1] page at the California Department of Motor Vehicles. [1]: http://www.dmv.ca.gov/dl/checklists/mc.htm"], ["updated_at", "2014-08-18 14:57:03.822215"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:03.842641"], ["in_language", "en"], ["text", "Can a person clear their criminal record? How?"], ["updated_at", "2014-08-18 14:57:03.842641"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (1.1ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'transportation' LIMIT 1
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "transportation"]]
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 71], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 71 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:03.861785"], ["tag_id", 3], ["taggable_id", 71], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:03.876058"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 71], ["text", "You can expunge -- or clear convictions from -- your criminal record by petitioning the state in which you were convicted, or the federal government. If you were convicted of crime in the State of California, instructions for the process of filing a Petition for Dismissal are [here][1] and [here][2]. [1]: http://www.courts.ca.gov/1070.htm [2]: http://www.saccourt.ca.gov/criminal/docs/1203-4-dismissal-process.pdf"], ["updated_at", "2014-08-18 14:57:03.876058"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:03.899632"], ["in_language", "en"], ["text", "Can I submit my resume for any future City job openings?"], ["updated_at", "2014-08-18 14:57:03.899632"]]
[1m[36mActsAsTaggableOn::Tag Load (1.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 72], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 72 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:03.912704"], ["tag_id", 3], ["taggable_id", 72], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:03.929497"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 72], ["text", "You can file a [Job Interest Card][1] for a specific department within the City of Oakland. After you've filed one you'll get an email when a job opens in that department so you can apply. You cannot file one for a specific job--only by department. Job interest cards last 12 months and then you'll need to re-file them at the above link. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm?action=openjobrequest"], ["updated_at", "2014-08-18 14:57:03.929497"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:03.958848"], ["in_language", "en"], ["text", "Who do I contact if I found a dog?"], ["updated_at", "2014-08-18 14:57:03.958848"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (0.7ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'pets' LIMIT 1
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "pets"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 73], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 73 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:03.971623"], ["tag_id", 4], ["taggable_id", 73], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:03.989761"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 73], ["text", "The city of Oakland's Animal Services is part of the Oakland Police Department. If you find a dog that you can not keep until you find its owner, call the Oakland Police Department non-emergency number: (510)-777-3333. Open 24 hours per day and 7 days per week. "], ["updated_at", "2014-08-18 14:57:03.989761"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.3ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.009926"], ["in_language", "en"], ["text", "Who do I need to inform if I change my address?"], ["updated_at", "2014-08-18 14:57:04.009926"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 74], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 74 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.022332"], ["tag_id", 3], ["taggable_id", 74], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.038438"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 74], ["text", "The City of Oakland does not need to be informed if you change your address, but you may need to contact other government entities if: 1) You've moved and need to change your mailing address. In this case, contact the US Postal Service [here](https://moversguide.usps.com/icoa/home/icoa-main-flow.do?execution=e1s1&_flowId=icoa-main-flow&referral=MG80). 2) You need to change the address on your drivers license. In this case, contact the CA DMV [here](http://www.dmv.ca.gov/faq/genfaq.htm#CHANGEADDRESS). 3) You need to change your voter registration. In this case, find information about how to register online at the CA Secretary of State [here](https://rtv.sos.ca.gov/elections/register-to-vote/). (Note: You need to go through the whole re-registration process even if you are already registered and simply need to change your address. There is a spot to indicate that you are already registered at another address)."], ["updated_at", "2014-08-18 14:57:04.038438"]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.070784"], ["in_language", "en"], ["text", "Where are the public swimming pools in Oakland?"], ["updated_at", "2014-08-18 14:57:04.070784"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 75], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 75 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (1.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.081678"], ["tag_id", 2], ["taggable_id", 75], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.098288"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 75], ["text", "You can find six public pools in Oakland. - Defremery Pool - 1269 18th Street (510) 238-2205 - East Oakland Sports Center - 9161 Edes Avenue (510) 615-5838 - Fremont Pool - 4550 Foothill Blvd (510) 535-5614 - Lions Pool - 3860 Hanly Road (510) 482-7852 - Live Oak Pool - 1055 MacArthur Blvd (510) 238-2292 - Temescal Pool - 371 45th Street (510) 597-5013 "], ["updated_at", "2014-08-18 14:57:04.098288"]]
[1m[35m (3.1ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.118558"], ["in_language", "en"], ["text", "How do I get an Oakland ID card?"], ["updated_at", "2014-08-18 14:57:04.118558"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (0.8ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'trash' LIMIT 1
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "trash"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 76], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 76 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.138162"], ["tag_id", 5], ["taggable_id", 76], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.5ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (1.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.153062"], ["in_language", "en"], ["need_to_know", "Before your visit, you can {{must??}} make a 30-minute appointment online or by phone.
Oakland's city ID card is identification accepted and respected as a valid residency card by Oakland Police Department, BART Police, Alameda County Sheriffs and other local authorities {{what about city/state/federal service agencies?}}.
Accepted proof of residency must show your name (or your spouse's, if you bring a certified copy of your marriage certificate {{where do you get this?? what does it cost?? what about civil unions/domestic partnerships??}} and Oakland address, and be dated within the last 30 days:
- Utility or services bill
- Local property tax statement
- Mortgage payment {{that doesn't make sense, shouldn't it be a mortgage interest payment invoice?}}
- Bank statement
- Pay stub
- Jury summons or court order
- Federal or state income tax or refund statement
- Insurance bill
- Proof of a minor currently enrolled in a local school
- Written verification by an Oakland-funded {{how are people supposed to know what's Oakland-funded versus county- or state-funded??}} homeless shelter, hospital, health clinic or social services agency of at least 15 days of residency
Accepted proof of identity:
- US Permanent Resident Card (\"Green Card\")
- Current US Driver License
- Current US State Issued ID
- Current US Military Service ID
- Mexican Matricula Consular Identification Card
- Foreign Government Issued National ID Card
- Foreign Passport
- Foreign Driver License
- Foreign Military Service ID
- Consular Identification Card
If you're 18 and over and provide one of the first six documents above, you can also apply to activate your city ID for use as a pre-paid debit card. Be aware that pre-paid debit card services carry both monthly and transactional fees that the vendor estimates range from a low end of $15 to a high end of over $27 per month.
"], ["question_id", 76], ["text", "You can apply for a city ID card in person at the City Center or Fruitvale office of SF Global LLC, the private company the city has contracted with to provide this service. Oakland's city ID card is available for purchase by Oakland residents 18 years and up {{?? website implies the card is available for at least some minors because it states that the optional financial services are available only to applicants 18 or older}} with proof of residency and identity.
"], ["updated_at", "2014-08-18 14:57:04.153062"]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.248285"], ["in_language", "en"], ["text", "What can I do when one or more neighbors start to erect large, all enclosing fences? "], ["updated_at", "2014-08-18 14:57:04.248285"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 77], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 77 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.257930"], ["tag_id", 4], ["taggable_id", 77], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.271279"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 77], ["text", "Installing of an over-sized fence requires a permit from building services. For reasons of fire safety and for neighborhood appearance, fences in front yards are limited to a height of three and a half feet, which is the same or six inches higher than fences allowed in many nearby cities in the Bay Area. Fencing in the back and along the sides of a house can be much taller. Visit the Planning and Building Department's [Permit information page][1] for more information. Although it is best to solve neighborhood issues in local groups and neighborhood associations, complaints can be sent to building services and these may result in fines for alternations without permits or variances. To file a Code Enforcement complaint, call (510) 238-3381 or visit the [City Code Enforcement][2] page. [1]: http://www2.oaklandnet.com/Government/o/PBN/OurServices/permits/ [2]: http://www2.oaklandnet.com/Government/o/PBN/OurServices/CityCodeEnforcement/index.htm "], ["updated_at", "2014-08-18 14:57:04.271279"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.302309"], ["in_language", "en"], ["text", "Can I plant a tree in a park?"], ["updated_at", "2014-08-18 14:57:04.302309"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 78], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (2.1ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 78 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.316737"], ["tag_id", 2], ["taggable_id", 78], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.332083"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 78], ["text", "You cannot plant a tree in a public park. "], ["updated_at", "2014-08-18 14:57:04.332083"]]
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.347463"], ["in_language", "en"], ["text", "How can I help the homeless?"], ["updated_at", "2014-08-18 14:57:04.347463"]]
[1m[36mActsAsTaggableOn::Tag Load (1.1ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 79], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 79 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.359001"], ["tag_id", 4], ["taggable_id", 79], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (1.3ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.380752"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 79], ["text", "There are are a number of ways that Oaklanders can help the homeless. You can be involved in city policy, volunteer, make donations, and become an advocate. Throughout the year, the City partners with local organizations for a variety of events. Oakland’s Permanent Access to Housing (PATH) Strategy provides a roadmap for ending homelessness in the City over a period of the next fifteen years. "], ["updated_at", "2014-08-18 14:57:04.380752"]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.407019"], ["in_language", "en"], ["text", "How Many People Live In Oakland?"], ["updated_at", "2014-08-18 14:57:04.407019"]]
[1m[36mActsAsTaggableOn::Tag Load (1.1ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 80], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 80 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.427721"], ["tag_id", 5], ["taggable_id", 80], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.448127"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 80], ["text", "The 2010 Census reported Oakland's population as 390,724. The California Department of Finance has estimated Oakland's population on January 1, 2013, as 399,326."], ["updated_at", "2014-08-18 14:57:04.448127"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.462361"], ["in_language", "en"], ["text", "What Council District am I in?"], ["updated_at", "2014-08-18 14:57:04.462361"]]
[1m[36mActsAsTaggableOn::Tag Load (1.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 81], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.2ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 81 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.474277"], ["tag_id", 5], ["taggable_id", 81], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.489469"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 81], ["text", "Go to [http://mapgis.oaklandnet.com/councildistricts/][1] and enter your address. The map shows how the city is divided into 7 council districts - you can click into any district to see the Councilmember, or you can enter your address in the locator field to see the result. The Councilmember contact information is displayed. [1]: http://mapgis.oaklandnet.com/councildistricts/"], ["updated_at", "2014-08-18 14:57:04.489469"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.1ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.507732"], ["in_language", "en"], ["text", "Where can I view a live webcast of City Council Meetings?"], ["updated_at", "2014-08-18 14:57:04.507732"]]
[1m[36mActsAsTaggableOn::Tag Load (2.2ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 82], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 82 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.521691"], ["tag_id", 4], ["taggable_id", 82], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.536322"], ["in_language", "en"], ["need_to_know", "The City of Oakland website can be found at http://www2.oaklandnet.com/"], ["question_id", 82], ["text", " [Oaklandnet.com][1] features [live (real-time streaming) as well as archived video.][2] Streaming video is available in the following formats. View the system requirements below to select the one that is best for you. (Live) [Microsoft Silverlight Users][3] (for PC and Macintosh) (Live) [Realplayer Users][4] Archived Videos and Agendas of the Oakland City Council: [Click here to view agendas, minutes and videos from past Council meetings.][5] [1]: http://www.Oaklandnet.com [2]: http://www2.oaklandnet.com/Government/o/CityCouncil/s/VideoArchive/index.htm [3]: http://oakland.granicus.com/MediaPlayer.php?publish_id=2 [4]: http://helixvideosvr.oaklandnet.com/ramgen/broadcast/encoderstream.rm [5]: http://oakland.legistar.com/calendar.aspx"], ["updated_at", "2014-08-18 14:57:04.536322"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.556381"], ["in_language", "en"], ["text", "How do I report drug dealing?"], ["updated_at", "2014-08-18 14:57:04.556381"]]
[1m[36mActsAsTaggableOn::Tag Load (1.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 83], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 83 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.570797"], ["tag_id", 2], ["taggable_id", 83], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.2ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.586151"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 83], ["text", "If there is drug dealing in progress you can report it to the Oakland Police Departments non-emergency number -- **510-777-3333**. Make sure to get the incident number. You can also call the Drug Hotline -- **510-238-DRUG/ 238-3784** drug dealing tip-line – you can leave a recorded message that police use for follow-up and to note chronic drug dealing hot spots. Give as much information as possible including gender, race, age, height, weight, clothing, possible location of drugs and associated vehicles."], ["updated_at", "2014-08-18 14:57:04.586151"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (1.2ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.604977"], ["in_language", "en"], ["text", "Do I need a permit to throw a party?"], ["updated_at", "2014-08-18 14:57:04.604977"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 84], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.4ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 84 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.618143"], ["tag_id", 5], ["taggable_id", 84], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (1.1ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.638426"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 84], ["text", "**Times when you DON'T need an event permit** If you are having a party **on you own property** (whether it's inside or outside, whether you rent or own) you don't need a permit to play amplified music or serve alcohol. ---------- **Times when you WILL need an event permit** There are times when you will need a **special permit** to hold an event. Conditions that require a special event permit include: - an event that is open to the public with 50 or more people will be in attendance - events that require street closures (e.g. a block party) - a party where people will be drinking alcohol outside of private property - a party with amplified sound that can be heard beyond your own property ---------- **How to get the permits you need** If you think your party meets the qualifications above then you will need **at least one permit from the City, maybe more.** Almost **all** events require a permit from the Special Activities unit of the City Administrator's Office. In most (not all) cases, you are going to need to prove that you have liability insurance for your proposed event. You can apply for a permit by contacting either of the following staff people: - Nancy Marcus - 510-238-3294 - nmarcus@oaklandnet.com - Jasmine Chan - 510-238-6914 - jchan@oaklandnet.com If your party is going to require a **street closure** then you must you must file an application with the Special Event Unit of the Oakland Police Department. Be sure to file the application with OPD **at least 30 days prior to your event**. To hold a party in a public space (e.g. a City park) you will need to request a reservation with the Office of Parks and Recreation by phone at 510-238-3187 or by email at oprscheduling@oaklandnet.com. "], ["updated_at", "2014-08-18 14:57:04.638426"]]
[1m[35m (2.3ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.2ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.665278"], ["in_language", "en"], ["text", "Who do I contact to get a space at a Farmer's Market?"], ["updated_at", "2014-08-18 14:57:04.665278"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 85], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 85 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.676693"], ["tag_id", 2], ["taggable_id", 85], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (1.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (2.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.693691"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 85], ["text", "There are different organizations that run the various farmer's markets throughout the city. You can find the contact information for specific farmer's markets through the California Certified Farmer's Market website. [http://www.cafarmersmarkets.com/index.cfm][1] [1]: http://www.cafarmersmarkets.com/index.cfm"], ["updated_at", "2014-08-18 14:57:04.693691"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.710488"], ["in_language", "en"], ["text", "Where is City Hall located?"], ["updated_at", "2014-08-18 14:57:04.710488"]]
[1m[36mActsAsTaggableOn::Tag Load (1.2ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 86], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 86 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.723444"], ["tag_id", 2], ["taggable_id", 86], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.736489"], ["in_language", "en"], ["need_to_know", "Oakland City Hall is conveniently located right off the BART line at the 12th Street/City Center station. For more information about schedules and for a map of the system, visit BART at [www.bart.gov][1] or call (510) 464-7133 (TDD#: (510) 839-2218). City Hall is also accessible via several different bus lines run by AC Transit. For more information about schedules and a system map, visit AC Transit at [www.actransit.org][2] or call (510) 891-4706 (TDD#: (510) 428-2266). Bus lines that serve City Hall include: 1, 1R, 11, 12, 18, 26, 72, 72R, 72M, 58L, 51A and the [free Broadway Shuttle][3]. [1]: http://www.bart.gov [2]: http://www.actransit.dst.cs.us [3]: http://www.meetdowntownoak.com/shuttle.php"], ["question_id", 86], ["text", "**Oakland City Hall**
1 Frank H. Ogawa Plaza
Oakland, CA 94612 [![map of oakland city hall][1]](http://mapq.st/146TJoF)
Frank H. Ogawa plaza is located on 14th street, between Broadway and Clay. [1]: http://i.imgur.com/DKkMn9M.png "], ["updated_at", "2014-08-18 14:57:04.736489"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.753216"], ["in_language", "en"], ["text", "How can I report students who are skipping school?"], ["updated_at", "2014-08-18 14:57:04.753216"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 87], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.5ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 87 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.769202"], ["tag_id", 3], ["taggable_id", 87], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.784392"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 87], ["text", "Truancy Reporting: To report and get help for youth not in school, phone the following. OUSD Police Non-Emergency Line: **510-874-7777**. Be sure to describe youth, their clothing, their location, their activity (any drugs or alcohol use) when calling in. For questions to OUSD police, email: **police@ousd.k12.ca.us** "], ["updated_at", "2014-08-18 14:57:04.784392"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.797668"], ["in_language", "en"], ["text", "How do I get a replacement birth certificate?"], ["updated_at", "2014-08-18 14:57:04.797668"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 88], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 88 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.806769"], ["tag_id", 2], ["taggable_id", 88], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.1ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (1.5ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.6ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.825523"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 88], ["text", "You have to request a replacement birth certificate from the county where you were born. If you were born in Alameda County, you can find directions for ordering replacement birth certificates [here][1]. [1]: http://www.acgov.org/auditor/clerk/birth2b.htm"], ["updated_at", "2014-08-18 14:57:04.825523"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.841983"], ["in_language", "en"], ["text", "How do I contact my Councilmember?"], ["updated_at", "2014-08-18 14:57:04.841983"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 89], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 89 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.850458"], ["tag_id", 4], ["taggable_id", 89], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.867940"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 89], ["text", "If you know who your councilmember is, you can go to: http://www2.oaklandnet.com/Government/o/ElectedOfficials/index.htm and click on the link for your member. This will take you to a website for that council member and information on who to contact their office , along with support staff If you don't know your representative, you can go to: http://mapgis.oaklandnet.com/councildistricts/ and enter your address for find the link for your representative."], ["updated_at", "2014-08-18 14:57:04.867940"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.885841"], ["in_language", "en"], ["text", "How do I rent a facility?"], ["updated_at", "2014-08-18 14:57:04.885841"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 90], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.4ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 90 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.898678"], ["tag_id", 3], ["taggable_id", 90], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.916274"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 90], ["text", "Please call Central Reservations at (510) 238-3187 or review our [Rental Facilities page][1] for additional information. [1]: http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm"], ["updated_at", "2014-08-18 14:57:04.916274"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.930145"], ["in_language", "en"], ["text", "How do I start residential garbage and recycling service in Oakland?"], ["updated_at", "2014-08-18 14:57:04.930145"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 91], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 91 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:04.939214"], ["tag_id", 2], ["taggable_id", 91], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (1.1ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:04.959877"], ["in_language", "en"], ["need_to_know", "To establish residential garbage services and green waste pickup in Oakland: - **If you own your home:** contact Waste Management of Alameda County at (510) 613-8710 to start weekly garbage and yard trimmings/food scraps collection service. - **If you are renting:** contact your landlord or property manager to start weekly garbage and yard trimmings/food scraps collection service. To start weekly recycling collection service for both owners and renters, contact your recycling company: - **North and West Oakland:** Recycling service is provided by California Waste Solutions. Call (510) 836-6200 to subscribe for service or to request a cart. - **East Oakland:** Recycling service is provided by Waste Management of Alameda County. Call (510) 613-8710 to subscribe for service or to request a cart."], ["question_id", 91], ["text", ""], ["updated_at", "2014-08-18 14:57:04.959877"]]
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:04.979569"], ["in_language", "en"], ["text", "Where can I receive language assistance?"], ["updated_at", "2014-08-18 14:57:04.979569"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('education'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (0.7ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'education' LIMIT 1
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "education"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 92], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 92 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.002389"], ["tag_id", 6], ["taggable_id", 92], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 6
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.043164"], ["in_language", "en"], ["need_to_know", "The Equal Access Office provides many kinds of language assistance to Oakland residents. [This webpage on the City's website][1] has a list of Language Assistance accommodations, that include: - How to know which city services have language assistance provided - A printable card you can carry with you to help city staff know that you need help in a language other than English **You can contact the Office of Equal Access for more information**
150 Frank H. Ogawa Plaza, 2nd Floor, Oakland, CA 94612
phone: (510) 238-6813
[equalaccess@oaklandnet.com][2] [1]: http://www2.oaklandnet.com/Government/o/HumanResources/o/EqualAccess/DOWD000747 [2]: mailto:equalaccess@oaklandnet.com"], ["question_id", 92], ["text", "Language assistance can also include: - Interpreters - Assistance from a bilingual staff member (who has received appropriate training) - Multimedia resources (for example, a multilingual CD-Rom) - Multilingual information on web sites - Multilingual telephone information - Translated printed materials"], ["updated_at", "2014-08-18 14:57:05.043164"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.122702"], ["in_language", "en"], ["text", "How much is the City’s total budget?"], ["updated_at", "2014-08-18 14:57:05.122702"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('education'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 93], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 93 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.132344"], ["tag_id", 6], ["taggable_id", 93], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 6
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.148326"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 93], ["text", "The City’s annual budget across all funds for the current fiscal year (FY 2012-13) is about $1 billion."], ["updated_at", "2014-08-18 14:57:05.148326"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.168061"], ["in_language", "en"], ["text", "How do I report an abandoned vehicle?"], ["updated_at", "2014-08-18 14:57:05.168061"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 94], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.1ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 94 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.180083"], ["tag_id", 5], ["taggable_id", 94], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.196895"], ["in_language", "en"], ["need_to_know", "To report abandoned vehicles parked on a public street for over 72 hours, you can: - Call the Abandoned Auto Detail at (510) 777-8622. - Email the location, description, and license number of the vehicle, if known, to AbandonedAuto@oaklandnet.com. To report an abandoned vehicle parked on private property or a private street, you can: - Call the Vehicle Abatement Detail at (510) 777-8538. The Abandoned Auto Detail operates Monday through Friday, 6am to 4pm. "], ["question_id", 94], ["text", ""], ["updated_at", "2014-08-18 14:57:05.196895"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.217173"], ["in_language", "en"], ["text", "What is the City doing to help the homeless?"], ["updated_at", "2014-08-18 14:57:05.217173"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Exists (0.6ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'recycling' LIMIT 1
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "tags" ("name") VALUES ($1) RETURNING "id"[0m [["name", "recycling"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 95], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 95 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.238220"], ["tag_id", 7], ["taggable_id", 95], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.253131"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 95], ["text", "The City of Oakland's homeless programs provide housing and services to people in Oakland who are homeless, hungry, HIV/AIDS positive, or living on extremely low incomes. Community Housing Services recognizes the tremendous need for services specific to the homeless population. We partner with non-profit organizations to assist the homeless and near-homeless community with homeless prevention, rapid re-housing, permanent supportive housing, shelter, transitional/supportive housing and special needs housing. We also provide other homeless support services such as food, employment, physical and mental health, drug abuse and domestic violence programs."], ["updated_at", "2014-08-18 14:57:05.253131"]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.270370"], ["in_language", "en"], ["text", "How do I request information from the Oakland Police Department"], ["updated_at", "2014-08-18 14:57:05.270370"]]
[1m[36mActsAsTaggableOn::Tag Load (1.2ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 96], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 96 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.286606"], ["tag_id", 3], ["taggable_id", 96], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.300278"], ["in_language", "en"], ["need_to_know", "Your request will either be fulfilled or denied- if it is denied you will be furnished with details of why the request is not being fulfilled. **Public records include:** - Complaints - Crime Reports - Department publications - Employment contracts - Offense reports - Recordings - List item - Traffic accident reports - Traffic enforcement incidents - Training records "], ["question_id", 96], ["text", "You may request certain types of information from the OPD using an Online, mail or in-person process. We highly suggest the online method. **Online** Step 1: Copy the Public Records [request form][1] to your computer Step 2: Save the PDF document to your computer and then complete the details on the PDF document itself. Step 3: Re-SAVE the PDF on your computer with the details completed. Step 4: Email it to [OPDPublicRecordsRequest@oaklandnet.com][2]. **In-Person** Step 1: Picking up a copy of the form in person at the [Police Administration Building][3] Patrol Desk on the first floor. Step 2: Bring the completed form to the OPD Records Division Kiosk on the first floor of the PAB. The Records Kiosk is open to the public from 8:00 am to 3:00 pm Monday through Friday and from 8:00 am until noon on Saturday and Sunday. **By Mail** Send your completed paper form to: Public Records Request Coordinator Oakland Police Department Records Section 455 7th Street, Room 306 Oakland, CA 94607 Contact Information for Assistance If you need additional assistance with a Public Records request, please contact the Public Records Request Coordinator: (510) 238-7143. [1]: http://www2.oaklandnet.com/Government/o/OPD/s/document/DOWD002885 [2]: http://mailto:OPDPublicRecordsRequest@oaklandnet.com?Subject=RecordsRequest [3]: http://maps.google.com/maps?hl=en&source=hp&ie=UTF8&q=oakland%20police%20department&fb=1&gl=us&hq=police%20department&hnear=oakland&ei=FJrfSrydOYWyswPn-IXoCA&ved=0CCsQnQIwBg&view=map&f=d&daddr=455%207th%20St,%20Oakland,%20CA&geocode=CU8p8gFnSfHUFcnGQAIdCD22-A"], ["updated_at", "2014-08-18 14:57:05.300278"]]
[1m[35m (1.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.318156"], ["in_language", "en"], ["text", "What charter schools are near me?"], ["updated_at", "2014-08-18 14:57:05.318156"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 97], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.2ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 97 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.330135"], ["tag_id", 5], ["taggable_id", 97], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.3ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.345757"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 97], ["text", "The [Center for Education Reform][1] can help you find charter schools near you. [This link][2] will show a list of all the charter schools in Oakland. You can also focus the list by choosing the grade level or locations you need. [1]: http://www.edreform.com/in-the-states/know-your-choices/find-a-charter-school/?filter%5Bname%5D=&filter%5Bcity%5D=Oakland&filter%5Bstate%5D=CA&filter%5Bgrade%5D=&filter%5Bgrades_categories%5D=&filter%5Bspecialty%5D= [2]: http://www.edreform.com/in-the-states/know-your-choices/find-a-charter-school/?filter%5Bname%5D=&filter%5Bcity%5D=Oakland&filter%5Bstate%5D=CA&filter%5Bgrade%5D=&filter%5Bgrades_categories%5D=&filter%5Bspecialty%5D="], ["updated_at", "2014-08-18 14:57:05.345757"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.360540"], ["in_language", "en"], ["text", "What are the parking holidays in Oakland?"], ["updated_at", "2014-08-18 14:57:05.360540"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 98], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 98 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.370385"], ["tag_id", 5], ["taggable_id", 98], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.388138"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 98], ["text", " The only days when there is no parking enforcement in Oakland are: - New Year's Day (January 1st) - Martin Luther King Jr. Day - President's Day - Memorial Day - Independence Day (July 4th) - Labor Day - Thanksgiving Day - Christmas Day (December 25th)"], ["updated_at", "2014-08-18 14:57:05.388138"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.405723"], ["in_language", "en"], ["text", "How do I get a marriage license?"], ["updated_at", "2014-08-18 14:57:05.405723"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 99], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 99 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.420624"], ["tag_id", 7], ["taggable_id", 99], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.433603"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 99], ["text", "Alameda County will issue you a marriage license is you and your future spouse request one in-person at the County Clerk-Recorder's Office. You can find more information [here][1]. [1]: http://www.acgov.org/auditor/clerk/ml.htm"], ["updated_at", "2014-08-18 14:57:05.433603"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.446835"], ["in_language", "en"], ["text", "Where can I find classes, programs and events that are happening at the library?"], ["updated_at", "2014-08-18 14:57:05.446835"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 100], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 100 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.457454"], ["tag_id", 4], ["taggable_id", 100], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (1.1ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.474439"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 100], ["text", "You can find a listing of library events on the library's website [here][1]. You can also pick up a monthly calendar of events at any [library branch][2]. [1]: http://oaklandlibrary.org/events [2]: http://oaklandlibrary.org/using-library/locations-hours"], ["updated_at", "2014-08-18 14:57:05.474439"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (2.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.493472"], ["in_language", "en"], ["text", "How do I get a disabled person parking permit?"], ["updated_at", "2014-08-18 14:57:05.493472"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 101], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 101 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.504811"], ["tag_id", 5], ["taggable_id", 101], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.521972"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 101], ["text", "Disabled parking permits need to be obtained from the California Department of Motor Vehicles. You can find more information and the application form [here](http://www.dmv.ca.gov/pubs/brochures/fast_facts/ffvr07.htm#)."], ["updated_at", "2014-08-18 14:57:05.521972"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.535009"], ["in_language", "en"], ["text", "Are there internships at the City?"], ["updated_at", "2014-08-18 14:57:05.535009"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 102], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 102 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.547886"], ["tag_id", 7], ["taggable_id", 102], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.567291"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 102], ["text", "You can find more information on City internships on the City of Oakland website. Different departments (including the [City Auditor][1], and the [Public Ethics Commission][2]) offer internships which can be found posted on the individual department's website. Go to the City of Oakland website, and search \"[internship][3]\". [1]: http://www.oaklandauditor.com/en/ruby/careers/40 [2]: http://www2.oaklandnet.com/Government/o/CityAdministration/d/PublicEthics/internships/index.htm [3]: http://www2.oaklandnet.com/Search/index.htm?cx=017801668647536616097:grdicmryz10&cof=FORID:10&ie=UTF-8&q=internship&sa=Search"], ["updated_at", "2014-08-18 14:57:05.567291"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.586945"], ["in_language", "en"], ["text", "How can I rent event space in Oakland?"], ["updated_at", "2014-08-18 14:57:05.586945"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 103], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 103 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.599848"], ["tag_id", 3], ["taggable_id", 103], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.616575"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 103], ["text", "Oakland Parks & Recreation offers rental facilities, listed here: [http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm][1] There are also private facilities available to rent in Oakland. [1]: http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm"], ["updated_at", "2014-08-18 14:57:05.616575"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.630188"], ["in_language", "en"], ["text", "Where can I get tax forms?"], ["updated_at", "2014-08-18 14:57:05.630188"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 104], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 104 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.639124"], ["tag_id", 7], ["taggable_id", 104], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (1.1ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (1.3ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.657946"], ["in_language", "en"], ["need_to_know", "If you would like to download tax forms online: Federal tax forms are available from the Internal Revenue Service. Many of the frequently used Federal tax forms can be found at http://www.irs.gov/uac/Forms,-Publications,-and-Other-Tax-Products. State tax forms are available from the State of California’s Franchise Tax Board. Many of the frequently used state tax forms can be found at https://www.ftb.ca.gov/forms/search/index.aspx."], ["question_id", 104], ["text", "You can find tax forms at the [Oakland Public Library][1] (like the 1040 EZ tax form). Some are in print form, and others can be printed by a library staff member (printing charges may apply). Before you go, it's helpful to bring the exact form number you need so the library staff member can find it with ease. If you don't have the form number, not to worry: a staff member is happy to help. To find an Oakland Public Library location near you, [look at the map][2]. [1]: http://www.oaklandlibrary.org/using-library/locations-hours [2]: https://data.oaklandnet.com/Public-Services/Map-of-Oakland-Public-Libraries/yra4-ynr5"], ["updated_at", "2014-08-18 14:57:05.657946"]]
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.672594"], ["in_language", "en"], ["text", "What are the safest areas in Oakland?"], ["updated_at", "2014-08-18 14:57:05.672594"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 105], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 105 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.682388"], ["tag_id", 2], ["taggable_id", 105], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.9ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.697939"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 105], ["text", "The best way to find out what areas of Oakland have the fewest reported crimes is by using the interactive map at the [Oakland Crimespotting][1] site. You can explore crimes by neighborhood, by type, by time of day, both recently and over time. [1]: http://oakland.crimespotting.org/ "], ["updated_at", "2014-08-18 14:57:05.697939"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.718181"], ["in_language", "en"], ["text", "Are there any sex offenders in my neighborhood?"], ["updated_at", "2014-08-18 14:57:05.718181"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (1.3ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 106], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 106 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (1.3ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.730237"], ["tag_id", 5], ["taggable_id", 106], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.747742"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 106], ["text", "You can search for your address on the [Meghan's Law Website][1] to find registered sex offenders that live nearby. Before you search the map, you have to click \"continue\" at the bottom of the first page, then click the check box and \"continue\" at the bottom of the second page. Then you will see a map of California and you can search for your address by clicking on the \"address\" box on the left side of the page. [1]: http://www.meganslaw.ca.gov/"], ["updated_at", "2014-08-18 14:57:05.747742"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.763966"], ["in_language", "en"], ["text", "What do I do if my car has been towed?"], ["updated_at", "2014-08-18 14:57:05.763966"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('education'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 107], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 107 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.774266"], ["tag_id", 6], ["taggable_id", 107], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 6
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.790740"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 107], ["text", "If you think your car has been towed, first check the A&B Towing site (http://www.abimpound.com/towed.html) to see if they know. You should also call the Police Department Records Division at (510) 238-3021 to confirm your car has been towed. If it has been towed, you can go to the Records Division, 3rd floor, Police Administration Building, 455 7th Street (at Broadway) to get a Release Form for your vehicle."], ["updated_at", "2014-08-18 14:57:05.790740"]]
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.806337"], ["in_language", "en"], ["text", "Where is the closest public library?"], ["updated_at", "2014-08-18 14:57:05.806337"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 108], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 108 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.815719"], ["tag_id", 2], ["taggable_id", 108], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.829507"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 108], ["text", "To see a map of all of the Oakland Public Libraries, go [here][1]. You can click on each dot to see the address, phone number and hours. You can find a list of library locations on the Oakland Public Library Website [here][2]. If you are looking for a library close to where you are right now, no matter where you are, you can click [here][3]. [1]: https://data.oaklandnet.com/Public-Services/Map-of-Oakland-Public-Libraries/yra4-ynr5 [2]: http://oaklandlibrary.org/using-library/locations-hours [3]: https://maps.google.com/maps?ie=UTF-8&q=closest%20public%20library"], ["updated_at", "2014-08-18 14:57:05.829507"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (1.1ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.2ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.845520"], ["in_language", "en"], ["text", "Where are the recycling centers located?"], ["updated_at", "2014-08-18 14:57:05.845520"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 109], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 109 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (1.2ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.858388"], ["tag_id", 4], ["taggable_id", 109], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.2ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.876634"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 109], ["text", "Here's a [directory of recycling drop off centers in and around Oakland][1]. For more information about recycling in Oakland, visit [www.oaklandrecycles.com][2]. [1]: http://www2.oaklandnet.com/oakca/groups/pwa/documents/form/oak027311.pdf [2]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/s/GAR/index.htm"], ["updated_at", "2014-08-18 14:57:05.876634"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.2ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.888520"], ["in_language", "en"], ["text", "What are the current job openings at the City?"], ["updated_at", "2014-08-18 14:57:05.888520"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 110], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 110 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.899625"], ["tag_id", 5], ["taggable_id", 110], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.916245"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 110], ["text", "Check the [Human Resources page][1] for a list of open jobs. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm"], ["updated_at", "2014-08-18 14:57:05.916245"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.929698"], ["in_language", "en"], ["text", "What youth services and activities are available?"], ["updated_at", "2014-08-18 14:57:05.929698"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 111], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 111 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.938521"], ["tag_id", 4], ["taggable_id", 111], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.9ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:05.951094"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 111], ["text", "Several city departments offer services for youth. You can see the Parks and Recreation listings [here][1]. The Oakland Public Library has many services and listings of services for [kids][2] and [teens][3]. Measure Y youth programs are [here][4]. **Late Night Live** Provides safe places for youth and families late Friday and Saturday nights. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254 **Mayor's Summer Job Program** Program to employ low-income youth during the summer. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254 **Mayor's Mentoring Initiative** Program that finds caring adults to work with Foster youth, formerly incarcerated youth and chronically absent youth. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254 **Summer Stars Program** An outdoor camping experience for middle school students from our toughest neighborhoods. Find dates for the next trip at the Summer Star's [website][5]. If you would like to sign up your group for a three day/two night camping trip, please contact us via email at oaklandpal@oaklandpal.org OR call 510-615-5758. **Oakland Police Activities League (PAL)** Program dedicated to offering programs and opportunities for kids to work with positive role models and learn about success and failure without guns and drugs. Offers basketball, track and field, overnight camping, and more. [Oakland PAL Website][6] **Oakland Police Explorers** Program designed for high school students who are at least 14.5 years old and want a chance to see what law enforcement is all about. If you are interested in the Explorer Program at the Oakland Police Department, contact the Explorer Advisors, Officer Mildred Oliver or Officer Jumaal Hill at: ph: 510-615-5758 fax: 510-615-5864 oaklandpal@oaklandpal.org **OK (Our Kids) Program** Program focused on reducing the high incarceration and homicide rates of African-American young men (12-18 years old) by providing needed services to youth, promoting economic self-reliance, and encouraging responsible citizenship. [Website][7] ph: 510-238-7998 okprogram@okprogramofoakland.com **GREAT Program** The Gang Resistance, Education and Training program is a structured, school-based program implemented in areas where gang activity either exists or are emerging. [Website][8] You can also find information about some of the [organizations with which we are partnering to give hope to Oakland's youth][10]. [1]: https://securerw.oaklandnet.com/registrationmain.sdi [2]: http://oaklandlibrary.org/kids [3]: http://oaklandlibrary.org/teens [4]: http://oaklandunite.org/youth/ [5]: http://oaklandpal.org/mayor_quan_summer_stars_camping_program [6]: http://oaklandpal.org/home [7]: http://www.okprogramofoakland.com/ [8]: http://www.great-online.org/ [9]: http://www.oaklandlibrary.org/teens/your-life/mind-body/mental-health-0 [10]: http://www2.oaklandnet.com/Government/o/Mayor/i/EducationLeadership/OAK025457"], ["updated_at", "2014-08-18 14:57:05.951094"]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:05.970733"], ["in_language", "en"], ["text", "Where can I get free Wi-Fi?"], ["updated_at", "2014-08-18 14:57:05.970733"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 112], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.1ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 112 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:05.983840"], ["tag_id", 7], ["taggable_id", 112], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.003754"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 112], ["text", "You can use free Wi-Fi at all Oakland Public Library locations. You can see a list of libraries [here][1]. You can use free Wi-Fi inside City Hall at 1 Frank H. Ogawa Plaza, Oakland, CA 94612. [1]: http://oaklandlibrary.org/using-library/locations-hours"], ["updated_at", "2014-08-18 14:57:06.003754"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.025179"], ["in_language", "en"], ["text", "What can and can't I recycle?"], ["updated_at", "2014-08-18 14:57:06.025179"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 113], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 113 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.042922"], ["tag_id", 5], ["taggable_id", 113], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.059718"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 113], ["text", "You can find a list of what you can and cannot recycle for both residential and commercial services on the [Oakland Recycles website][1]. For recyclable items that are not listed on the Oakland Recycles website, please visit [www.stopwaste.org][2] and use the online Recycling Guide (towards the bottom right side of the Stop Waste web page. [1]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/s/GAR/index.htm [2]: http://www.stopwaste.org"], ["updated_at", "2014-08-18 14:57:06.059718"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.092900"], ["in_language", "en"], ["text", "How can I see how my city councilperson voted on a particular issue?"], ["updated_at", "2014-08-18 14:57:06.092900"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 114], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 114 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.107766"], ["tag_id", 5], ["taggable_id", 114], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.125416"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 114], ["text", "Visit the City Clerk's Legistar search feature at [http://oakland.legistar.com/legislation.aspx][1]. Click on the record number for the legislation in the search results and then on Action Details. [1]: http://oakland.legistar.com/legislation.aspx"], ["updated_at", "2014-08-18 14:57:06.125416"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (2.0ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.148147"], ["in_language", "en"], ["text", "Where do I get a bus pass?"], ["updated_at", "2014-08-18 14:57:06.148147"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 115], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 115 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.167370"], ["tag_id", 4], ["taggable_id", 115], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.5ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.188488"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 115], ["text", "[AC Transit](http://actransit.com) makes bus passes available at many Oakland retail locations, including supermarkets, drug stores, senior centers and news stands. Search for your nearest retail location using your Zip code at [AC Transit's retail locations finder](http://www.actransit.org/rider-info/where-to-buy-a-pass/). Passes can be purchased by mail using the [AC Transit order form](http://www.actransit.org/wp-content/uploads/Ticket_-Order_Form-8.2011.pdf). All AC Transit vehicles accept payments using [Clipper Card](http://www.actransit.org/rider-info/why-clipper/), the Bay Area’s reloadable card for paying transit fares. A Clipper card keeps track of the value on it and automatically deducts the right fare, including transfers and discounts. You can load an AC Transit pass onto a Clipper card, a pass from another agency, or cash value."], ["updated_at", "2014-08-18 14:57:06.188488"]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.215904"], ["in_language", "en"], ["text", "How do I register to vote?"], ["updated_at", "2014-08-18 14:57:06.215904"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 116], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 116 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.231831"], ["tag_id", 2], ["taggable_id", 116], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.250610"], ["in_language", "en"], ["need_to_know", "---------- *Have other questions about how to register to vote, or whether you need to? Go to the [Alameda County Registrar of Voters FAQ Page][1]* [1]: http://www.acgov.org/rov/registrationfaq.htm "], ["question_id", 116], ["text", " **If you just need to register or re-register to vote -- you can do it online!** **Go to the [California Secretary of State's online voter registration page][1].** [1]: http://registertovote.ca.gov/"], ["updated_at", "2014-08-18 14:57:06.250610"]]
[1m[35m (1.6ms)[0m COMMIT
[1m[36m (1.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (3.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.274380"], ["in_language", "en"], ["text", "Can I speak with a live person at the City for help with a question?"], ["updated_at", "2014-08-18 14:57:06.274380"]]
[1m[36mActsAsTaggableOn::Tag Load (1.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 117], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 117 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.295722"], ["tag_id", 2], ["taggable_id", 117], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.314990"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 117], ["text", "You can call the Oaklanders Assistance Center at (510) 444-CITY, which is (510) 444-2489. Or email your question to [oac@oaklandnet.com][1]. If you prefer, you may visit the center in-person. Office hours are typically 8:30 am to 5pm. [1]: http://mailto:oac@oaklandnet.com"], ["updated_at", "2014-08-18 14:57:06.314990"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (7.3ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.345661"], ["in_language", "en"], ["text", "How much does it cost to ride a bus in Oakland?"], ["updated_at", "2014-08-18 14:57:06.345661"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 118], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 118 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.358739"], ["tag_id", 5], ["taggable_id", 118], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.385667"], ["in_language", "en"], ["need_to_know", "You might also consider a convenient buss pass. [Click here to see the answer on where to purchase bus passes][1]. [1]: http://answers.oaklandnet.com/quick_answers/where-do-i-get-a-bus-pass"], ["question_id", 118], ["text", "You can find a full detailed listing of bus fares on the AC Transit site [here][1]. * Regular bus fare is $2.10. * Youth bus fare is $1.05 (ages 5-18) * Senior bus fare is $1.05 (ages 65+) [1]: http://www.actransit.org/rider-info/bus-fares/"], ["updated_at", "2014-08-18 14:57:06.385667"]]
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.404559"], ["in_language", "en"], ["text", "Who do I contact if a tree is protruding on to my property?"], ["updated_at", "2014-08-18 14:57:06.404559"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 119], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 119 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.415350"], ["tag_id", 4], ["taggable_id", 119], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.431239"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 119], ["text", "If there is a tree protruding onto your property you will need to determine if the tree itself is on public or private property. If the tree is on: - **Private Property** - you will need to communicate with the owner and discuss a solution. If the resolution is tree removal, the owner will need to file a [removal permit][1]. - **Public Property** - Please call (510) 615-5566 or submit your request online by clicking here, use the SeeClickFix mobile or web app or email pwacallcenter@oaklandnet.com. [1]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/o/TreeServices/OAK023048"], ["updated_at", "2014-08-18 14:57:06.431239"]]
[1m[35m (1.2ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.451640"], ["in_language", "en"], ["text", "Does the City have a calendar of fun events?"], ["updated_at", "2014-08-18 14:57:06.451640"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 120], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 120 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.475759"], ["tag_id", 4], ["taggable_id", 120], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (4.3ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (2.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.501777"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 120], ["text", "Visit Oakland, the official destination marketing organization for the City of Oakland, maintains an online event calendar at [www.visitoakland.org][1]. Submit your event information via email to [events@visitoakland.org][2]. [1]: http://www.visitoakland.org [2]: http://mailto:events@visitoakland.org"], ["updated_at", "2014-08-18 14:57:06.501777"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (2.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.516546"], ["in_language", "en"], ["text", "How do I get a passport?"], ["updated_at", "2014-08-18 14:57:06.516546"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 121], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 121 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.531145"], ["tag_id", 7], ["taggable_id", 121], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.551197"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 121], ["text", "To get a passport or to renew your existing passport, visit the U.S. State Department's [website][1] and fill out an application. Then bring your finished application, original birth certificate and check or money order to a local processing center. Visit the following website to find a nearby center. You may need to schedule an appointment. [http://iafdb.travel.state.gov/][2] [1]: http://travel.state.gov/passport/ [2]: http://iafdb.travel.state.gov/"], ["updated_at", "2014-08-18 14:57:06.551197"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.567375"], ["in_language", "en"], ["text", "How can I report an animal nuisance?"], ["updated_at", "2014-08-18 14:57:06.567375"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 122], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (6.3ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 122 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.592115"], ["tag_id", 3], ["taggable_id", 122], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.610303"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 122], ["text", "If it is an emergency (a vicious dog or an animal in distress), call (510) 777-3333. If it is not an emergency (barking dogs, obnoxious cats, crowing roosters), call (510) 535-5602. Please note that roosters are illegal in Oakland. "], ["updated_at", "2014-08-18 14:57:06.610303"]]
[1m[35m (0.8ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.624395"], ["in_language", "en"], ["text", "What is the closest park to my house?"], ["updated_at", "2014-08-18 14:57:06.624395"]]
[1m[36mActsAsTaggableOn::Tag Load (2.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('transportation'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 123], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 3 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 123 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.644156"], ["tag_id", 3], ["taggable_id", 123], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 3]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 3
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.659364"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 123], ["text", "You can see a list of all the parks and where they are on a map here[1] [1]: http://www2.oaklandnet.com/Government/o/opr/s/Parks/index.htm"], ["updated_at", "2014-08-18 14:57:06.659364"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (1.9ms)[0m [1mBEGIN[0m
[1m[35mSQL (2.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.685588"], ["in_language", "en"], ["text", "What are the closest hiking trails?"], ["updated_at", "2014-08-18 14:57:06.685588"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 124], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 124 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.699727"], ["tag_id", 7], ["taggable_id", 124], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.716382"], ["in_language", "en"], ["need_to_know", "There are many trails in the hills and various parks. The Parks and Recreation department lists the names of all of their parks, as well as various walking tours. You can search for all Bay Area trails near you on an interactive map. Transit to Trails shows many city and county parks, including those that can be reached by public transit. Yelp also lists trails, with reviews: Search Yelp for Walking Trails. "], ["question_id", 124], ["text", ""], ["updated_at", "2014-08-18 14:57:06.716382"]]
[1m[35m (1.3ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.754272"], ["in_language", "en"], ["text", "What is the City's budget process?"], ["updated_at", "2014-08-18 14:57:06.754272"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 125], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 125 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.764187"], ["tag_id", 4], ["taggable_id", 125], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.5ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.3ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.778253"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 125], ["text", "The City of Oakland operates on a two-year budget cycle and is how City Council establishes its goals, program priorities and desired service levels for the upcoming fiscal period. The City Charter requires the City's budget be balanced -- expenditures must not exceed revenues. The Charter also requires that the budget must be adopted on or before June 30. Budget development and adoption occurs on odd numbered years and mid-cycle budget amendments occur on even numbered years. [Click here to visit the City's web page on the budget process.][1] [1]: http://ttp://www2.oaklandnet.com/Governmacnt/o/CityAdministration/d/BudgetOffice/DOWD005079."], ["updated_at", "2014-08-18 14:57:06.778253"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.794183"], ["in_language", "en"], ["text", "How do you request a bike rack In your neighborhood or commercial street?"], ["updated_at", "2014-08-18 14:57:06.794183"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 126], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 126 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.805181"], ["tag_id", 7], ["taggable_id", 126], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (1.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (1.6ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.826081"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 126], ["text", "You can request a rack on City owned property by filling out the request form. The form asks for information about the address, the business name and your relationship to the business (if available)"], ["updated_at", "2014-08-18 14:57:06.826081"]]
[1m[35m (2.2ms)[0m COMMIT
[1m[36m (0.4ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.842308"], ["in_language", "en"], ["text", "I am behind on my property taxes. Is there a City program that can help?"], ["updated_at", "2014-08-18 14:57:06.842308"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 127], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 127 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.855103"], ["tag_id", 4], ["taggable_id", 127], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.3ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.869343"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 127], ["text", "The City does not assist with the payment of property taxes. Questions about delinquent property taxes should be directed to the Alameda County Treasurer-Tax Collector’s Office at [www.acgov.org/treasurer/][1], or by calling 510.272.6800. The County does offer payment plans. With respect to City liens placed on property taxes, under very limited circumstances, payment plans with the City may be allowed and the lien(s) would be reversed. For more information, contact the Oakland Housing Assistance Center: - Phone: (510) 238-6182 - Email: housingassistance@oaklandnet.com - Address: 250 Frank Ogawa Plaza 6th Floor Oakland, CA 94612 - [http://www2.oaklandnet.com/Government/o/hcd/o/HousingAssistanceCenter/index.htm][2] [1]: http://www.acgov.org/treasurer/ [2]: http://www2.oaklandnet.com/Government/o/hcd/o/HousingAssistanceCenter/index.htm"], ["updated_at", "2014-08-18 14:57:06.869343"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (0.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.887690"], ["in_language", "en"], ["text", "How do you report a problem with your smartphone."], ["updated_at", "2014-08-18 14:57:06.887690"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('education'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 128], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.2ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 6 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 128 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.907821"], ["tag_id", 6], ["taggable_id", 128], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 6]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 6
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.922534"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 128], ["text", "When you are outside and see an issue that the City of Oakland is responsible, take out your smartphone, click a picture, and then report it. This problems gets tracked in the City's database. You get a link to share with your neighbors, while being informed when the City fixes the problem. First download the app - SeeClickFix. You will need to register with SeeClickFix to get an account. Then, you track your reports by going to the web site https://seeclickfix.com. Once you start reporting these issues, you are notified of nearby problems and can support your neighbors efforts to make your neighborhood better."], ["updated_at", "2014-08-18 14:57:06.922534"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.943196"], ["in_language", "en"], ["text", "How do I contact my Council Member?"], ["updated_at", "2014-08-18 14:57:06.943196"]]
[1m[36mActsAsTaggableOn::Tag Load (1.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 129], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 129 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (1.0ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:06.962643"], ["tag_id", 4], ["taggable_id", 129], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.8ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:06.979951"], ["in_language", "en"], ["need_to_know", "If you know your Council district number, the general phone number for each Councilmember is (510) 238-700[# of District]. For example, the phone number for the District 4 Office (Montclair-Laurel-Allendale) is (510) 238-7004. Oakland's At-Large Councilmember's Office phone is (510) 238-7008. The City's naming convention for emaill addresses is first-initial-last-name@oaklandnet.com, for example Councilmember Libby Schaaf's email is lschaaf@oaklandnet.com. If you want to know what Councilmembers serve on a particular Council Committee go [here][4]. If you want to email ALL Councilmembers at once, send to citycouncil@oaklandnet.com . Many Councilmembers have newsletters you can subscribe to and some hold public office hours for drop-in visits."], ["question_id", 129], ["text", "If you don't know who your Councilmember is, use this [locator tool][1] or call the Council Office Front Desk at (510) 238-7584. The [locator tool][2] also provides your Councilmember's email. Links to all Councilmember websites are [here][3]. [1]: http://mapgis.oaklandnet.com/councildistricts/ [2]: http://%20http://mapgis.oaklandnet.com/councildistricts/ [3]: http://www2.oaklandnet.com/Government/o/CityCouncil/index.htm [4]: http://www2.oaklandnet.com/oakca1/groups/cityclerk/documents/webcontent/oak040150.pdf"], ["updated_at", "2014-08-18 14:57:06.979951"]]
[1m[35m (1.4ms)[0m COMMIT
[1m[36m (1.2ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.2ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:06.996809"], ["in_language", "en"], ["text", "Can I apply for more than one City job at a time?"], ["updated_at", "2014-08-18 14:57:06.996809"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('trash'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 130], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 5 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 130 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.4ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.009389"], ["tag_id", 5], ["taggable_id", 130], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.4ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 5]]
[1m[35mSQL (5.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 5
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.027595"], ["in_language", "en"], ["need_to_know", "Let's say you've applied to a job before at the [Employment Opportunities][1] page. High five. Your standard information is are all saved with your account in your online profile. Address, past work history, all the stock info is saved. You can use the stored information for your new job with a click of a button and update it as you need to. **However, most jobs have Supplemental Questions that you MUST answer.** These questions are specific and unique. For instance, if I apply for a Park Ranger job and a Park Supervisor job, my resume is going to look pretty much the same and I can use it for both. But the questions asked by the applications for the two jobs are different, so I need to answer those questions differently. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm"], ["question_id", 130], ["text", "Yes, you can apply for any City job that is open and apply for as many of them as you like at the same time. But for each position, you have to fill out separate applications since each job posting usually requires information unique to that job – it might be special questions, or you’ll have to attach a copy of a certificate, that sort of thing."], ["updated_at", "2014-08-18 14:57:07.027595"]]
[1m[35m (1.5ms)[0m COMMIT
[1m[36m (1.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:07.045398"], ["in_language", "en"], ["text", "Where can I get help with my taxes?"], ["updated_at", "2014-08-18 14:57:07.045398"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 131], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.6ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 131 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.058872"], ["tag_id", 4], ["taggable_id", 131], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.9ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.5ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.080192"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 131], ["text", "You can find help with your taxes--for free!--at the following locations: * [American Association Retired Persons (AARP) Foundation Tax-Aide][1] * United Way of Bay Area [SparkPoint Centers][2] * Oakland Public Library [Tax Assistance Program][3] Closer to tax time, visit these organizations: * [The Unity Council][4] * [The East Bay Asian Development Corporation][5] The Internal Revenue Service (IRS) also offers [free tax preparation help][6] on their website. [1]: http://www.aarp.org/money/taxes/aarp_taxaide/ [2]: http://www.uwba.org/cut-poverty/sparkpoint/ [3]: http://www.oaklandlibrary.org/services/tax-assistance-program [4]: http://www.unitycouncil.org/ [5]: http://www.ebaldc.org/ [6]: http://www.irs.gov/Individuals/Free-Tax-Return-Preparation-for-You-by-Volunteers"], ["updated_at", "2014-08-18 14:57:07.080192"]]
[1m[35m (1.7ms)[0m COMMIT
[1m[36m (1.5ms)[0m [1mBEGIN[0m
[1m[35mSQL (1.6ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:07.098137"], ["in_language", "en"], ["text", "How do I get a permit for constructing a building?"], ["updated_at", "2014-08-18 14:57:07.098137"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 132], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 132 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.115674"], ["tag_id", 2], ["taggable_id", 132], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (0.6ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.1ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.131562"], ["in_language", "en"], ["need_to_know", "The type of permit you need to obtain is dependent on the specifics of your project. Before you go, review the [checklist of documents](http://www2.oaklandnet.com/Government/o/PBN/OurServices/permits/index.htm) to bring with you in order to apply for your permit. "], ["question_id", 132], ["text", "**Apply in person at the City of Oakland's Building Services Department Permit Center on the second floor of 250 Frank H. Ogawa Plaza, Oakland.** "], ["updated_at", "2014-08-18 14:57:07.131562"]]
[1m[35m (1.1ms)[0m COMMIT
[1m[36m (4.0ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:07.153070"], ["in_language", "en"], ["text", "When/what are festivals in Oakland?"], ["updated_at", "2014-08-18 14:57:07.153070"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 133], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.9ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 133 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.9ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.165938"], ["tag_id", 4], ["taggable_id", 133], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.5ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (1.0ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (1.7ms)[0m [1mCOMMIT[0m
[1m[35m (0.4ms)[0m BEGIN
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.188223"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 133], ["text", "You can find a list of upcoming and ongoing festivals as well as a general list of fun events taking place in Oakland on the [Visit Oakland Calendar of Festivals page][1]. [1]: http://visitoakland.org/visiting_calendar_of_events.cfm?all=1"], ["updated_at", "2014-08-18 14:57:07.188223"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.7ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.5ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:07.211675"], ["in_language", "en"], ["text", "What are the most dangerous areas in Oakland?"], ["updated_at", "2014-08-18 14:57:07.211675"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('recycling'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 134], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (1.0ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 7 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 134 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.220620"], ["tag_id", 7], ["taggable_id", 134], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 7]]
[1m[35mSQL (0.8ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 7
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
[1m[35m (0.7ms)[0m BEGIN
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.233940"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 134], ["text", "The best way to find out what areas of Oakland have the most reported crimes is by using the interactive map at the [Oakland Crimespotting][1] site. You can explore crimes by neighborhood, by type, by time of day, both recently and over time. [1]: http://oakland.crimespotting.org/ "], ["updated_at", "2014-08-18 14:57:07.233940"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.8ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:07.247395"], ["in_language", "en"], ["text", "What is the best place to live, work, and play?"], ["updated_at", "2014-08-18 14:57:07.247395"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('employment'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 135], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.7ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 2 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 135 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.256796"], ["tag_id", 2], ["taggable_id", 135], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 2]]
[1m[35mSQL (1.2ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 2
[1m[36m (1.4ms)[0m [1mCOMMIT[0m
[1m[35m (0.8ms)[0m BEGIN
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.274720"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 135], ["text", "...the City of Oakland!"], ["updated_at", "2014-08-18 14:57:07.274720"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36m (0.6ms)[0m [1mBEGIN[0m
[1m[35mSQL (0.7ms)[0m INSERT INTO "questions" ("created_at", "in_language", "text", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-08-18 14:57:07.286406"], ["in_language", "en"], ["text", "I am an Oakland landlord. How can I evict a tenant?"], ["updated_at", "2014-08-18 14:57:07.286406"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" WHERE (LOWER(name) = LOWER('pets'))[0m
[1m[35mActsAsTaggableOn::Tag Load (0.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 136], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tagging Exists (0.8ms)[0m [1mSELECT 1 AS one FROM "taggings" WHERE ("taggings"."tag_id" = 4 AND "taggings"."taggable_type" = 'Question' AND "taggings"."taggable_id" = 136 AND "taggings"."context" = 'tags' AND "taggings"."tagger_id" IS NULL AND "taggings"."tagger_type" IS NULL) LIMIT 1[0m
[1m[35mSQL (0.6ms)[0m INSERT INTO "taggings" ("context", "created_at", "tag_id", "taggable_id", "taggable_type") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["context", "tags"], ["created_at", "2014-08-18 14:57:07.295634"], ["tag_id", 4], ["taggable_id", 136], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT 1[0m [["id", 4]]
[1m[35mSQL (0.7ms)[0m UPDATE "tags" SET "taggings_count" = COALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 4
[1m[36m (0.9ms)[0m [1mCOMMIT[0m
[1m[35m (0.6ms)[0m BEGIN
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "answers" ("created_at", "in_language", "need_to_know", "question_id", "text", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["created_at", "2014-08-18 14:57:07.308829"], ["in_language", "en"], ["need_to_know", ""], ["question_id", 136], ["text", "**Verify that you are legally allowed to evict the tenant.** ◦ A tenant may be evicted for failing to pay rent. ◦ A tenant may be evicted for violating the lease. ◦ A tenant may be evicted for using the rental unit for an unlawful purpose. ◦ A tenant may be evicted for manufacturing or dealing illegal drugs in the rental unit. ◦ A tenant may be evicted for the unlawful use of a weapon or ammunition. ◦ A tenant may be evicted for materially damaging the rental unit. ◦ A tenant may be evicted for causing a significant nuisance to other tenants. **Serve the tenant with a 3-Day Notice to Pay Rent or Quit form.** ◦ Take the completed form to the tenant and hand it to him or her. If he or she refuses to take it, leave it on the ground near the tenant. ◦ If you are unable to serve it directly to the tenant, leave it with someone who is at least 18 years old at the rental unit or with an adult at the tenant's place of work. A copy must also be mailed to the tenant in this situation. ◦ If unable to serve the form directly to another person, post it on the tenant's door and mail a copy of the form to him or her. **Allow the tenant 3 business days (Monday to Friday) after delivering the notice to remedy the situation.** ◦ The 3-day period begins the day after the notice is served. **File an Unlawful Detainer Complaint, a Civil Case Cover Sheet, and a Pre-judgment Right of Possession form.** ◦ The Unlawful Detainer Complaint can be found at the following URL: http://www.courts.ca.gov/documents/ud100.pdf. This is an eviction notice. ◦ The Civil Case Cover Sheet can be found at the following URL: http://www.courts.ca.gov/documents/cm010.pdf ◦ Submit the paperwork to the courthouse in the county that the property is in. ◦ The County Clerk will give you a Summons and a stamped copy of the Unlawful Detainer Complaint. Make sure you also receive the Pre-judgment Right of Possession form. In some cases, you must provide multiple copies for the Clerk to stamp. **Serve the tenant with the Unlawful Detainer Complaint, the Summons, and the Pre-judgment Right of Possession form.** ◦ Serve these in the same way as you served the 3-day Notice to Pay Rent or Quit form. ◦ The tenant will have 5 days to file a response with you and the court. Post and mail the tenant has 10 days to respond, after the 10 days start counting the 5 days, if no response file for judgement. **Complete the court process.** ◦ If the tenant does not answer within 5 days after being served, request a default judgment from the court. This can be done by submitting a following form to the court. ◦ If a default judgment is issued, you will be given a Writ of Possession. Take this form to the local Sheriff and have him or her evict the tenant. ◦ If the tenant decides to challenge the eviction, you or the tenant may request a trial in front of a judge or jury. The trial will occur within 21 days of the request. ◦ If you win the case, you will be awarded possession of the property and possibly monetary awards. ◦ If you win the case, the court will order the Sheriff to post a notice giving the tenant 5 days to vacate the rental unit. If the tenant does not leave, the Sheriff will forcibly remove him or her. ◦ If the tenant wins the case, he or she will be permitted to remain in the rental unit. You may have to pay his or her court fees and he or she may be ordered to pay any past-due rent. **Store the tenant's items for 2 weeks if he or she is evicted.** ◦ If the tenant leaves items behind, you must store them for 2 weeks and attempt to arrange for the tenant to retrieve them. ◦ If anything remains after this period, you may keep, sell, or dispose of the items. More info: http://www.dca.ca.gov/publications/landlordbook/index.shtml http://www2.oaklandnet.com/oakca/groups/ceda/documents/policy/dowd008116.pdf [1]: http://www.courts.ca.gov/documents/ud100.pdf"], ["updated_at", "2014-08-18 14:57:07.308829"]]
[1m[35m (1.0ms)[0m COMMIT
[1m[36mQuestion Load (2.3ms)[0m [1mSELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1[0m
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 69], ["taggable_type", "Question"]]
[1m[36mQuestion Load (2.0ms)[0m [1mSELECT "questions".* FROM "questions"[0m
[1m[35mActsAsTaggableOn::Tag Load (1.3ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 69], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 70], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 71], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 72], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 73], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 74], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 75], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 76], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 77], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 78], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 79], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 80], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 81], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 82], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 83], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 84], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 85], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 86], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 87], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 88], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.3ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 89], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 90], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 91], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 92], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 93], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 94], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 95], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 96], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 97], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (2.2ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 98], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 99], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 100], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 101], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 102], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 103], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 104], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 105], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 106], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 107], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 108], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.1ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 109], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 110], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 111], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 112], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 113], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 114], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 115], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 116], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 117], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.1ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 118], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.2ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 119], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 120], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 121], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 122], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 123], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 124], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 125], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 126], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (2.3ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 127], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.2ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 128], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 129], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 130], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 131], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 132], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 133], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 134], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 135], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 136], ["taggable_type", "Question"]]
[1m[35mQuestion Load (1.3ms)[0m SELECT "questions".* FROM "questions"
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 69], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 70], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 71], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 72], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 73], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 74], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 75], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 76], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 77], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 78], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 79], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 80], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 81], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 82], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 83], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 84], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.5ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 85], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 86], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 87], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 88], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 89], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 90], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 91], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 92], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 93], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.5ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 94], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 95], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 96], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 97], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 98], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 99], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.0ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 100], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 101], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 102], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 103], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.2ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 104], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 105], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 106], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 107], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 108], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 109], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 110], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 111], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.6ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 112], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.9ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 113], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 114], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.0ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 115], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 116], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 117], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 118], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 119], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 120], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 121], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 122], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 123], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 124], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.7ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 125], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.2ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 126], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 127], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.9ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 128], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 129], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 130], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.8ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 131], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.7ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 132], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (0.6ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 133], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (1.4ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 134], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (1.5ms)[0m [1mSELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL)[0m [["taggable_id", 135], ["taggable_type", "Question"]]
[1m[35mActsAsTaggableOn::Tag Load (0.8ms)[0m SELECT "tags".* FROM "tags" INNER JOIN "taggings" ON "tags"."id" = "taggings"."tag_id" WHERE "taggings"."taggable_id" = $1 AND "taggings"."taggable_type" = $2 AND (taggings.context = 'tags' AND taggings.tagger_id IS NULL) [["taggable_id", 136], ["taggable_type", "Question"]]
[1m[36mActsAsTaggableOn::Tag Load (2.4ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
[1m[35mActsAsTaggableOn::Tag Load (1.7ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Started GET "/" for 10.0.2.2 at 2014-08-18 15:50:37 +0000
Started GET "/" for 10.0.2.2 at 2014-08-18 15:50:37 +0000
Processing by HomeController#index as HTML
[1m[36mActsAsTaggableOn::Tag Load (2.5ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (1.3ms)
Rendered home/index.html.erb within layouts/application (38.9ms)
Completed 200 OK in 319ms (Views: 271.6ms | ActiveRecord: 16.0ms)
Processing by HomeController#index as HTML
[1m[35mActsAsTaggableOn::Tag Load (2.8ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Rendered shared/_autocomplete.html.erb (0.6ms)
Rendered home/index.html.erb within layouts/application (28.3ms)
Completed 200 OK in 219ms (Views: 191.3ms | ActiveRecord: 13.2ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 15:50:44 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:50:44 +0000
Processing by HomeController#index as */*
[1m[36mActsAsTaggableOn::Tag Load (1.8ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (0.9ms)
Rendered home/index.html.erb within layouts/application (153.0ms)
Completed 200 OK in 535ms (Views: 529.2ms | ActiveRecord: 1.8ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:51:11 +0000
Processing by HomeController#index as HTML
[1m[35mActsAsTaggableOn::Tag Load (2.7ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Rendered shared/_autocomplete.html.erb (0.4ms)
Rendered home/index.html.erb within layouts/application (27.5ms)
Completed 200 OK in 292ms (Views: 287.4ms | ActiveRecord: 2.7ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 15:51:17 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 24ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:51:17 +0000
Processing by HomeController#index as */*
[1m[35mActsAsTaggableOn::Tag Load (2.2ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Rendered shared/_autocomplete.html.erb (0.4ms)
Rendered home/index.html.erb within layouts/application (136.9ms)
Completed 200 OK in 611ms (Views: 602.2ms | ActiveRecord: 2.2ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:52:09 +0000
SyntaxError (/home/vagrant/answers/app/controllers/home_controller.rb:10: syntax error, unexpected tIDENTIFIER, expecting ')'
...:tags).sort_by(:&taggings_count).reverse
... ^):
app/controllers/home_controller.rb:10: syntax error, unexpected tIDENTIFIER, expecting ')'
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
Rendered /home/vagrant/ruby/2.1.0/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.5ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:52:22 +0000
Processing by HomeController#index as HTML
[1m[36mActsAsTaggableOn::Tag Load (1.3ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (0.5ms)
Rendered home/index.html.erb within layouts/application (20.4ms)
Completed 200 OK in 285ms (Views: 273.5ms | ActiveRecord: 4.5ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 15:52:29 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 23ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:52:29 +0000
Processing by HomeController#index as */*
[1m[36mActsAsTaggableOn::Tag Load (3.9ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (0.9ms)
Rendered home/index.html.erb within layouts/application (223.4ms)
Completed 200 OK in 2067ms (Views: 2017.9ms | ActiveRecord: 17.8ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:53:16 +0000
Processing by HomeController#index as HTML
[1m[35mActsAsTaggableOn::Tag Load (1.6ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Rendered shared/_autocomplete.html.erb (1.1ms)
Rendered home/index.html.erb within layouts/application (21.0ms)
Completed 200 OK in 204ms (Views: 192.8ms | ActiveRecord: 5.0ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 15:53:23 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 15:53:23 +0000
Processing by HomeController#index as */*
[1m[35mActsAsTaggableOn::Tag Load (1.7ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Rendered shared/_autocomplete.html.erb (0.5ms)
Rendered home/index.html.erb within layouts/application (124.3ms)
Completed 200 OK in 492ms (Views: 474.6ms | ActiveRecord: 8.2ms)
[1m[36mActsAsTaggableOn::Tag Load (2.4ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
[1m[35mQuestion Load (1.4ms)[0m SELECT "questions".* FROM "questions" ORDER BY "questions"."id" ASC LIMIT 1
[1m[36m (0.8ms)[0m [1mBEGIN[0m
[1m[35mActsAsTaggableOn::Tag Exists (0.9ms)[0m SELECT 1 AS one FROM "tags" WHERE "tags"."name" = 'fud' LIMIT 1
[1m[36mSQL (1.0ms)[0m [1mINSERT INTO "tags" ("name", "taggings_count") VALUES ($1, $2) RETURNING "id"[0m [["name", "fud"], ["taggings_count", 1]]
[1m[35m (0.9ms)[0m COMMIT
Started GET "/" for 10.0.2.2 at 2014-08-18 17:10:37 +0000
Started GET "/" for 10.0.2.2 at 2014-08-18 17:10:37 +0000
Processing by HomeController#index as HTML
[1m[36mActsAsTaggableOn::Tag Load (4.4ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (0.9ms)
Rendered home/index.html.erb within layouts/application (20.7ms)
Completed 200 OK in 305ms (Views: 256.1ms | ActiveRecord: 15.9ms)
Processing by HomeController#index as HTML
[1m[36mActsAsTaggableOn::Tag Load (2.3ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (0.6ms)
Rendered home/index.html.erb within layouts/application (20.6ms)
Completed 200 OK in 219ms (Views: 201.8ms | ActiveRecord: 8.1ms)
Started GET "/search.json?q=" for 10.0.2.2 at 2014-08-18 17:10:44 +0000
Processing by SearchController#index as JSON
Parameters: {"q"=>""}
Redirected to http://localhost:9080/
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 17:10:44 +0000
Processing by HomeController#index as */*
[1m[36mActsAsTaggableOn::Tag Load (1.5ms)[0m [1mSELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id[0m
Rendered shared/_autocomplete.html.erb (0.7ms)
Rendered home/index.html.erb within layouts/application (196.4ms)
Completed 200 OK in 693ms (Views: 681.5ms | ActiveRecord: 5.0ms)
Started GET "/" for 10.0.2.2 at 2014-08-18 17:11:24 +0000
Processing by HomeController#index as HTML
[1m[35mActsAsTaggableOn::Tag Load (1.4ms)[0m SELECT tags.*, taggings.tags_count AS count FROM "tags" JOIN (SELECT taggings.tag_id, COUNT(taggings.tag_id) AS tags_count FROM "taggings" INNER JOIN questions ON questions.id = taggings.taggable_id WHERE (taggings.taggable_type = 'Question' AND taggings.context = 'tags') AND (taggings.taggable_id IN(SELECT questions.id FROM "questions")) GROUP BY taggings.tag_id HAVING COUNT(taggings.tag_id) > 0) AS taggings ON taggings.tag_id = tags.id
Rendered home/_category.html.erb (24.9ms)
Rendered home/index.html.erb within layouts/application (42.0ms)
Completed 500 Internal Server Error in 85ms
ActionView::Template::Error (wrong number of arguments (0 for 1..4)):
1: